Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
d5ba8f67
Commit
d5ba8f67
authored
May 09, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make Spring Boot Antlib's integration tests compatible with JDK 9
Closes gh-10021
parent
7a82660b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
pom.xml
spring-boot-tools/spring-boot-antlib/pom.xml
+22
-2
No files found.
spring-boot-tools/spring-boot-antlib/pom.xml
View file @
d5ba8f67
...
@@ -80,7 +80,7 @@
...
@@ -80,7 +80,7 @@
</path>
</path>
<pathconvert
refid=
"taskpath"
/>
<pathconvert
refid=
"taskpath"
/>
<typedef
resource=
"org/springframework/boot/ant/antlib.xml"
classpathref=
"taskpath"
uri=
"antlib:org.springframework.boot.ant"
/>
<typedef
resource=
"org/springframework/boot/ant/antlib.xml"
classpathref=
"taskpath"
uri=
"antlib:org.springframework.boot.ant"
/>
<property
name=
"build.compiler"
value=
"
org.eclipse.jdt.core.JDTCompilerAdapter
"
/>
<property
name=
"build.compiler"
value=
"
${antBuildCompiler}
"
/>
<antunit
xmlns=
"antlib:org.apache.ant.antunit"
>
<antunit
xmlns=
"antlib:org.apache.ant.antunit"
>
<propertyset>
<propertyset>
<propertyref
name=
"build.compiler"
/>
<propertyref
name=
"build.compiler"
/>
...
@@ -120,10 +120,30 @@
...
@@ -120,10 +120,30 @@
<dependency>
<dependency>
<groupId>
org.eclipse.jdt.core.compiler
</groupId>
<groupId>
org.eclipse.jdt.core.compiler
</groupId>
<artifactId>
ecj
</artifactId>
<artifactId>
ecj
</artifactId>
<version>
4.
4.2
</version>
<version>
4.
6.1
</version>
</dependency>
</dependency>
</dependencies>
</dependencies>
</plugin>
</plugin>
</plugins>
</plugins>
</build>
</build>
<profiles>
<profile>
<id>
java-8
</id>
<activation>
<jdk>
[1.8,1.9)
</jdk>
</activation>
<properties>
<antBuildCompiler>
org.eclipse.jdt.core.JDTCompilerAdapter
</antBuildCompiler>
</properties>
</profile>
<profile>
<id>
java-9
</id>
<activation>
<jdk>
[1.9,)
</jdk>
</activation>
<properties>
<antBuildCompiler>
modern
</antBuildCompiler>
</properties>
</profile>
</profiles>
</project>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment