Backport support for Java 11

This commit is contained in:
Greg Turnquist
2018-08-28 10:57:13 -05:00
parent 6e25cfd0ac
commit 477ed57822
2 changed files with 15 additions and 19 deletions

View File

@@ -33,35 +33,35 @@ jobs:
environment:
PROFILE: spring51-next,convergence
j10_current:
j11_current:
docker:
- image: circleci/openjdk:10.0.1-jdk-node-browsers
- image: circleci/openjdk:11-ea-27-jdk-sid
steps:
- checkout
- run:
name: Java 10 - Test current version
name: Java 11 - Test current version
command: mvn clean dependency:list test -P${PROFILE} -Dsort
environment:
PROFILE: java10,convergence
j10_spring_next:
j11_spring_next:
docker:
- image: circleci/openjdk:10.0.1-jdk-node-browsers
- image: circleci/openjdk:11-ea-27-jdk-sid
steps:
- checkout
- run:
name: Java 10 - Test Spring.NEXT
name: Java 11 - Test Spring.NEXT
command: mvn clean dependency:list test -P${PROFILE} -Dsort
environment:
PROFILE: spring5-next,java10,convergence
j10_spring51_next:
j11_spring51_next:
docker:
- image: circleci/openjdk:10.0.1-jdk-node-browsers
- image: circleci/openjdk:11-ea-27-jdk-sid
steps:
- checkout
- run:
name: Java 10 - Test Spring.NEXT 5.1
name: Java 11 - Test Spring.NEXT 5.1
command: mvn clean dependency:list test -P${PROFILE} -Dsort
environment:
PROFILE: spring51-next,java10,convergence
@@ -82,17 +82,17 @@ workflows:
- j8_current
- j8_spring_next
- j8_spring51_next
- j10_current
- j10_spring_next
- j10_spring51_next
- j11_current
- j11_spring_next
- j11_spring51_next
- deploy:
requires:
- j8_current
- j8_spring_next
- j8_spring51_next
- j10_current
- j10_spring_next
- j10_spring51_next
- j11_current
- j11_spring_next
- j11_spring51_next
general:
branches:

View File

@@ -471,10 +471,6 @@
</build>
</profile>
<profile>
<id>java10</id>
</profile>
</profiles>
<dependencyManagement>