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
f7c8be18
Commit
f7c8be18
authored
Mar 02, 2018
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply java9 profile to JDK 10 (and later) as well as JDK 9
See gh-12028
parent
7fdc2635
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
13 additions
and
13 deletions
+13
-13
pom.xml
spring-boot-project/spring-boot-parent/pom.xml
+1
-1
pom.xml
...ng-boot-samples/spring-boot-sample-data-cassandra/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-data-rest/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-flyway/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-jersey/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-jetty-jsp/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-jpa/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-jta-atomikos/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-jta-bitronix/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-jta-narayana/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-test/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-webservices/pom.xml
+1
-1
No files found.
spring-boot-project/spring-boot-parent/pom.xml
View file @
f7c8be18
...
...
@@ -759,7 +759,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<properties>
<aspectj.version>
1.9.0.RC1
</aspectj.version>
...
...
spring-boot-samples/spring-boot-sample-data-cassandra/pom.xml
View file @
f7c8be18
...
...
@@ -107,7 +107,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<build>
<plugins>
...
...
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
View file @
f7c8be18
...
...
@@ -49,7 +49,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-data-rest/pom.xml
View file @
f7c8be18
...
...
@@ -68,7 +68,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-flyway/pom.xml
View file @
f7c8be18
...
...
@@ -57,7 +57,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-jersey/pom.xml
View file @
f7c8be18
...
...
@@ -58,7 +58,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-jetty-jsp/pom.xml
View file @
f7c8be18
...
...
@@ -72,7 +72,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<build>
<plugins>
...
...
spring-boot-samples/spring-boot-sample-jpa/pom.xml
View file @
f7c8be18
...
...
@@ -57,7 +57,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-jta-atomikos/pom.xml
View file @
f7c8be18
...
...
@@ -65,7 +65,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-jta-bitronix/pom.xml
View file @
f7c8be18
...
...
@@ -65,7 +65,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-jta-narayana/pom.xml
View file @
f7c8be18
...
...
@@ -64,7 +64,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-test/pom.xml
View file @
f7c8be18
...
...
@@ -65,7 +65,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<dependencies>
<dependency>
...
...
spring-boot-samples/spring-boot-sample-webservices/pom.xml
View file @
f7c8be18
...
...
@@ -51,7 +51,7 @@
<profile>
<id>
java9
</id>
<activation>
<jdk>
9
</jdk>
<jdk>
[9,)
</jdk>
</activation>
<build>
<plugins>
...
...
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