Skip to content

Commit a17a86b

Browse files
committed
chore: bump java version
1 parent 55b1571 commit a17a86b

File tree

7 files changed

+33
-19
lines changed

7 files changed

+33
-19
lines changed

.github/workflows/create-rc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ jobs:
8181
with:
8282
ref: ${{ steps.extract_branch.outputs.branch }}
8383

84-
- name: Set up JDK 21
84+
- name: Set up JDK 25
8585
uses: actions/setup-java@v4
8686
with:
8787
distribution: "temurin"
88-
java-version: "21"
88+
java-version: "25"
8989

9090
- name: install model filiere
9191
run: mvn install:install-file -Dfile="$(pwd)/queen-listener-jms/libs/modelefiliere-1.1.2-SNAPSHOT.jar" -DgroupId=fr.insee -DartifactId=modelefiliere -Dversion=1.1.2-SNAPSHOT -Dpackaging=jar -DgeneratePom=true

.github/workflows/create-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
outputs:
1111
release-version: ${{ steps.version-step.outputs.version }}
1212
steps:
13-
- name: Set up JDK 21
13+
- name: Set up JDK 25
1414
uses: actions/setup-java@v4
1515
with:
1616
distribution: 'temurin'
17-
java-version: '21'
17+
java-version: '25'
1818

1919
- name: install model filiere
2020
run: mvn install:install-file -Dfile="$(pwd)/queen-listener-jms/libs/modelefiliere-1.1.2-SNAPSHOT.jar" -DgroupId=fr.insee -DartifactId=modelefiliere -Dversion=1.1.2-SNAPSHOT -Dpackaging=jar -DgeneratePom=true
@@ -52,11 +52,11 @@ jobs:
5252
needs: check-version
5353
runs-on: ubuntu-latest
5454
steps:
55-
- name: Set up JDK 21
55+
- name: Set up JDK 25
5656
uses: actions/setup-java@v4
5757
with:
5858
distribution: 'temurin'
59-
java-version: '21'
59+
java-version: '25'
6060

6161
- name: install model filiere
6262
run: mvn install:install-file -Dfile="$(pwd)/queen-listener-jms/libs/modelefiliere-1.1.2-SNAPSHOT.jar" -DgroupId=fr.insee -DartifactId=modelefiliere -Dversion=1.1.2-SNAPSHOT -Dpackaging=jar -DgeneratePom=true

.github/workflows/create-snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
with:
2828
ref: ${{ steps.extract_branch.outputs.branch }}
2929

30-
- name: Set up JDK 21
30+
- name: Set up JDK 25
3131
uses: actions/setup-java@v4
3232
with:
3333
distribution: "temurin"
34-
java-version: "21"
34+
java-version: "25"
3535

3636
- name: install model filiere
3737
run: mvn install:install-file -Dfile="$(pwd)/queen-listener-jms/libs/modelefiliere-1.1.2-SNAPSHOT.jar" -DgroupId=fr.insee -DartifactId=modelefiliere -Dversion=1.1.2-SNAPSHOT -Dpackaging=jar -DgeneratePom=true

.github/workflows/gandalf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111

12-
- name: Set up JDK 21
12+
- name: Set up JDK 25
1313
uses: actions/setup-java@v4
1414
with:
1515
distribution: 'temurin'
16-
java-version: '21'
16+
java-version: '25'
1717

1818
- name: install model filiere
1919
run: mvn install:install-file -Dfile="$(pwd)/queen-listener-jms/libs/modelefiliere-1.1.2-SNAPSHOT.jar" -DgroupId=fr.insee -DartifactId=modelefiliere -Dversion=1.1.2-SNAPSHOT -Dpackaging=jar -DgeneratePom=true

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
18-
- name: Set up JDK 21
18+
- name: Set up JDK 25
1919
uses: actions/setup-java@v4
2020
with:
21-
java-version: 21
21+
java-version: 25
2222
distribution: 'temurin'
2323
- name: install model filiere
2424
run: mvn install:install-file -Dfile="$(pwd)/queen-listener-jms/libs/modelefiliere-1.1.2-SNAPSHOT.jar" -DgroupId=fr.insee -DartifactId=modelefiliere -Dversion=1.1.2-SNAPSHOT -Dpackaging=jar -DgeneratePom=true

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
- uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
14-
- name: Set up JDK 21
14+
- name: Set up JDK 25
1515
uses: actions/setup-java@v4
1616
with:
17-
java-version: 21
17+
java-version: 25
1818
distribution: 'temurin'
1919
- name: Run Trivy vulnerability scanner
2020
uses: aquasecurity/[email protected]

pom.xml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<description>Modules for queen back-office</description>
1111

1212
<properties>
13-
<revision>5.7.1</revision>
13+
<revision>5.7.2</revision>
1414
<changelist></changelist>
15-
<java.version>21</java.version>
16-
<maven.compiler.source>21</maven.compiler.source>
17-
<maven.compiler.target>21</maven.compiler.target>
15+
<java.version>25</java.version>
16+
<maven.compiler.source>25</maven.compiler.source>
17+
<maven.compiler.target>25</maven.compiler.target>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2020
<!-- maven-surefire-plugin setting.
@@ -34,7 +34,7 @@
3434
<parent>
3535
<groupId>org.springframework.boot</groupId>
3636
<artifactId>spring-boot-starter-parent</artifactId>
37-
<version>3.5.7</version>
37+
<version>3.5.9</version>
3838
<relativePath/> <!-- lookup parent from repository -->
3939
</parent>
4040

@@ -118,6 +118,20 @@
118118

119119
<build>
120120
<plugins>
121+
<plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-compiler-plugin</artifactId>
124+
<version>3.14.1</version>
125+
<configuration>
126+
<!-- Since java 23 projects-->
127+
<annotationProcessorPaths>
128+
<path>
129+
<groupId>org.projectlombok</groupId>
130+
<artifactId>lombok</artifactId>
131+
</path>
132+
</annotationProcessorPaths>
133+
</configuration>
134+
</plugin>
121135
<plugin>
122136
<groupId>org.codehaus.mojo</groupId>
123137
<artifactId>flatten-maven-plugin</artifactId>

0 commit comments

Comments
 (0)