Browse Source

Apply java9 profile to JDK 10 (and later) as well as JDK 9

See gh-12028
pull/12324/head
Andy Wilkinson 8 years ago
parent
commit
f7c8be1877
  1. 2
      spring-boot-project/spring-boot-parent/pom.xml
  2. 2
      spring-boot-samples/spring-boot-sample-data-cassandra/pom.xml
  3. 2
      spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
  4. 2
      spring-boot-samples/spring-boot-sample-data-rest/pom.xml
  5. 2
      spring-boot-samples/spring-boot-sample-flyway/pom.xml
  6. 2
      spring-boot-samples/spring-boot-sample-jersey/pom.xml
  7. 2
      spring-boot-samples/spring-boot-sample-jetty-jsp/pom.xml
  8. 2
      spring-boot-samples/spring-boot-sample-jpa/pom.xml
  9. 2
      spring-boot-samples/spring-boot-sample-jta-atomikos/pom.xml
  10. 2
      spring-boot-samples/spring-boot-sample-jta-bitronix/pom.xml
  11. 2
      spring-boot-samples/spring-boot-sample-jta-narayana/pom.xml
  12. 2
      spring-boot-samples/spring-boot-sample-test/pom.xml
  13. 2
      spring-boot-samples/spring-boot-sample-webservices/pom.xml

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

@ -759,7 +759,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<properties> <properties>
<aspectj.version>1.9.0.RC1</aspectj.version> <aspectj.version>1.9.0.RC1</aspectj.version>

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

@ -107,7 +107,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<build> <build>
<plugins> <plugins>

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

@ -49,7 +49,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -68,7 +68,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -57,7 +57,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -58,7 +58,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -72,7 +72,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<build> <build>
<plugins> <plugins>

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

@ -57,7 +57,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -65,7 +65,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -65,7 +65,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -64,7 +64,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -65,7 +65,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<dependencies> <dependencies>
<dependency> <dependency>

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

@ -51,7 +51,7 @@
<profile> <profile>
<id>java9</id> <id>java9</id>
<activation> <activation>
<jdk>9</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<build> <build>
<plugins> <plugins>

Loading…
Cancel
Save