Skip to content

Commit f7c8be1

Browse files
committed
Apply java9 profile to JDK 10 (and later) as well as JDK 9
See spring-projectsgh-12028
1 parent 7fdc263 commit f7c8be1

File tree

13 files changed

+13
-13
lines changed
  • spring-boot-project/spring-boot-parent
  • spring-boot-samples

13 files changed

+13
-13
lines changed

spring-boot-project/spring-boot-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@
759759
<profile>
760760
<id>java9</id>
761761
<activation>
762-
<jdk>9</jdk>
762+
<jdk>[9,)</jdk>
763763
</activation>
764764
<properties>
765765
<aspectj.version>1.9.0.RC1</aspectj.version>

spring-boot-samples/spring-boot-sample-data-cassandra/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
<profile>
108108
<id>java9</id>
109109
<activation>
110-
<jdk>9</jdk>
110+
<jdk>[9,)</jdk>
111111
</activation>
112112
<build>
113113
<plugins>

spring-boot-samples/spring-boot-sample-data-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<profile>
5050
<id>java9</id>
5151
<activation>
52-
<jdk>9</jdk>
52+
<jdk>[9,)</jdk>
5353
</activation>
5454
<dependencies>
5555
<dependency>

spring-boot-samples/spring-boot-sample-data-rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<profile>
6969
<id>java9</id>
7070
<activation>
71-
<jdk>9</jdk>
71+
<jdk>[9,)</jdk>
7272
</activation>
7373
<dependencies>
7474
<dependency>

spring-boot-samples/spring-boot-sample-flyway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<profile>
5858
<id>java9</id>
5959
<activation>
60-
<jdk>9</jdk>
60+
<jdk>[9,)</jdk>
6161
</activation>
6262
<dependencies>
6363
<dependency>

spring-boot-samples/spring-boot-sample-jersey/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<profile>
5959
<id>java9</id>
6060
<activation>
61-
<jdk>9</jdk>
61+
<jdk>[9,)</jdk>
6262
</activation>
6363
<dependencies>
6464
<dependency>

spring-boot-samples/spring-boot-sample-jetty-jsp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<profile>
7373
<id>java9</id>
7474
<activation>
75-
<jdk>9</jdk>
75+
<jdk>[9,)</jdk>
7676
</activation>
7777
<build>
7878
<plugins>

spring-boot-samples/spring-boot-sample-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<profile>
5858
<id>java9</id>
5959
<activation>
60-
<jdk>9</jdk>
60+
<jdk>[9,)</jdk>
6161
</activation>
6262
<dependencies>
6363
<dependency>

spring-boot-samples/spring-boot-sample-jta-atomikos/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<profile>
6666
<id>java9</id>
6767
<activation>
68-
<jdk>9</jdk>
68+
<jdk>[9,)</jdk>
6969
</activation>
7070
<dependencies>
7171
<dependency>

spring-boot-samples/spring-boot-sample-jta-bitronix/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<profile>
6666
<id>java9</id>
6767
<activation>
68-
<jdk>9</jdk>
68+
<jdk>[9,)</jdk>
6969
</activation>
7070
<dependencies>
7171
<dependency>

spring-boot-samples/spring-boot-sample-jta-narayana/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<profile>
6565
<id>java9</id>
6666
<activation>
67-
<jdk>9</jdk>
67+
<jdk>[9,)</jdk>
6868
</activation>
6969
<dependencies>
7070
<dependency>

spring-boot-samples/spring-boot-sample-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<profile>
6666
<id>java9</id>
6767
<activation>
68-
<jdk>9</jdk>
68+
<jdk>[9,)</jdk>
6969
</activation>
7070
<dependencies>
7171
<dependency>

spring-boot-samples/spring-boot-sample-webservices/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<profile>
5252
<id>java9</id>
5353
<activation>
54-
<jdk>9</jdk>
54+
<jdk>[9,)</jdk>
5555
</activation>
5656
<build>
5757
<plugins>

0 commit comments

Comments
 (0)