Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit e4f85bc

Browse files
committed
Switch from Java 10 to Java 11 for extended support.
1 parent 98aae89 commit e4f85bc

File tree

2 files changed

+24
-28
lines changed

2 files changed

+24
-28
lines changed

circle.yml

+24-24
Original file line numberDiff line numberDiff line change
@@ -44,49 +44,49 @@ jobs:
4444
environment:
4545
PROFILE: springdata-next,convergence
4646

47-
j10_current:
47+
j11_current:
4848
docker:
49-
- image: circleci/openjdk:10.0.1-jdk-node-browsers
49+
- image: circleci/openjdk:11-ea-27-jdk-sid
5050
steps:
5151
- checkout
5252
- run:
53-
name: Java 10 - Test current version
53+
name: Java 11 - Test current version
5454
command: mvn clean dependency:list test -P${PROFILE} -Dsort
5555
environment:
56-
PROFILE: non-existent,java10,convergence
56+
PROFILE: non-existent,convergence
5757

58-
j10_spring_next:
58+
j11_spring_next:
5959
docker:
60-
- image: circleci/openjdk:10.0.1-jdk-node-browsers
60+
- image: circleci/openjdk:11-ea-27-jdk-sid
6161
steps:
6262
- checkout
6363
- run:
64-
name: Java 10 - Test Spring.NEXT
64+
name: Java 11 - Test Spring.NEXT
6565
command: mvn clean dependency:list test -P${PROFILE} -Dsort
6666
environment:
67-
PROFILE: spring5-next,java10,convergence
67+
PROFILE: spring5-next,convergence
6868

69-
j10_spring51_next:
69+
j11_spring51_next:
7070
docker:
71-
- image: circleci/openjdk:10.0.1-jdk-node-browsers
71+
- image: circleci/openjdk:11-ea-27-jdk-sid
7272
steps:
7373
- checkout
7474
- run:
75-
name: Java 10 - Test Spring.NEXT 5.1
75+
name: Java 11 - Test Spring.NEXT 5.1
7676
command: mvn clean dependency:list test -P${PROFILE} -Dsort
7777
environment:
78-
PROFILE: spring51-next,java10,convergence
78+
PROFILE: spring51-next,convergence
7979

80-
j10_springdata_next:
80+
j11_springdata_next:
8181
docker:
82-
- image: circleci/openjdk:10.0.1-jdk-node-browsers
82+
- image: circleci/openjdk:11-ea-27-jdk-sid
8383
steps:
8484
- checkout
8585
- run:
86-
name: Java 10 - Test Spring Data.NEXT
86+
name: Java 11 - Test Spring Data.NEXT
8787
command: mvn clean dependency:list test -P${PROFILE} -Dsort
8888
environment:
89-
PROFILE: springdata-next,java10,convergence
89+
PROFILE: springdata-next,convergence
9090

9191
deploy:
9292
docker:
@@ -105,20 +105,20 @@ workflows:
105105
- j8_spring_next
106106
- j8_spring51_next
107107
- j8_springdata_next
108-
- j10_current
109-
- j10_spring_next
110-
- j10_spring51_next
111-
- j10_springdata_next
108+
- j11_current
109+
- j11_spring_next
110+
- j11_spring51_next
111+
- j11_springdata_next
112112
- deploy:
113113
requires:
114114
- j8_current
115115
- j8_spring_next
116116
- j8_spring51_next
117117
- j8_springdata_next
118-
- j10_current
119-
- j10_spring_next
120-
- j10_spring51_next
121-
- j10_springdata_next
118+
- j11_current
119+
- j11_spring_next
120+
- j11_spring51_next
121+
- j11_springdata_next
122122

123123
general:
124124
branches:

pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -453,10 +453,6 @@
453453
</build>
454454
</profile>
455455

456-
<profile>
457-
<id>java10</id>
458-
</profile>
459-
460456
</profiles>
461457

462458
<dependencyManagement>

0 commit comments

Comments
 (0)