File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 27
27
28
28
- uses : actions/setup-java@v4
29
29
with :
30
- java-version : 17
30
+ java-version : 21
31
31
distribution : " temurin"
32
32
- uses : actions/cache@v4
33
33
with :
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
19
- - name : Set up JDK 17
19
+ - name : Set up JDK 21
20
20
uses : actions/setup-java@v4
21
21
with :
22
- java-version : " 17 "
22
+ java-version : " 21 "
23
23
distribution : " temurin"
24
24
server-id : openconext-releases
25
25
server-username : MAVEN_USERNAME
@@ -49,21 +49,21 @@ jobs:
49
49
exit 1
50
50
if : github.event_name != 'workflow_dispatch' && steps.versioncheck.outputs.version != github.ref_name
51
51
52
- - name : Set up JDK 17 for snapshots
52
+ - name : Set up JDK 21 for snapshots
53
53
uses : actions/setup-java@v4
54
54
with :
55
- java-version : " 17 "
55
+ java-version : " 21 "
56
56
distribution : " temurin"
57
57
cache : " maven"
58
58
server-id : openconext-snapshots
59
59
server-username : MAVEN_USERNAME
60
60
server-password : MAVEN_PASSWORD
61
61
if : ( endsWith(steps.versioncheck.outputs.version, '-SNAPSHOT'))
62
62
63
- - name : Set up JDK 17 for releases
63
+ - name : Set up JDK 21 for releases
64
64
uses : actions/setup-java@v4
65
65
with :
66
- java-version : " 17 "
66
+ java-version : " 21 "
67
67
distribution : " temurin"
68
68
cache : " maven"
69
69
server-id : openconext-releases
Original file line number Diff line number Diff line change 1
- FROM eclipse-temurin:17 -jdk-alpine
1
+ FROM eclipse-temurin:21 -jdk-alpine
2
2
COPY target/*.jar app.jar
3
3
ENTRYPOINT ["java" ,"-jar" ,"/app.jar" ]
Original file line number Diff line number Diff line change 29
29
<jacoco-maven-plugin .version>0.8.12</jacoco-maven-plugin .version>
30
30
<jackson-dataformat-xml .version>2.15.0</jackson-dataformat-xml .version>
31
31
<jakarta .xml.bind-api.version>4.0.2</jakarta .xml.bind-api.version>
32
- <java .version>17 </java .version>
32
+ <java .version>21 </java .version>
33
33
<javase .version>3.5.3</javase .version>
34
34
<junit-vintage-engine .version>5.10.2</junit-vintage-engine .version>
35
35
<logstash-logback-encoder .version>6.4</logstash-logback-encoder .version>
83
83
<artifactId >maven-compiler-plugin</artifactId >
84
84
<version >${maven-compiler-plugin.version} </version >
85
85
<configuration >
86
- <release >17 </release >
86
+ <release >21 </release >
87
87
</configuration >
88
88
</plugin >
89
89
<plugin >
You can’t perform that action at this time.
0 commit comments