Skip to content

Commit ba8932f

Browse files
authored
Adopt Java 25 (#336)
LMCROSSITXSADEPLOY-3390
1 parent 0ecb75e commit ba8932f

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Java JDK
5252
uses: actions/setup-java@v3
5353
with:
54-
java-version: 17
54+
java-version: 25
5555
distribution: 'zulu'
5656

5757
# Initializes the CodeQL tools for scanning.

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: Set up JDK 17
12+
- name: Set up JDK 25
1313
uses: actions/setup-java@v3
1414
with:
15-
java-version: '17'
15+
java-version: '25'
1616
distribution: 'zulu'
1717

1818
- name: Build and Run Unit Tests

.github/workflows/pull-request-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
- name: Set up JDK 17
14+
- name: Set up JDK 25
1515
uses: actions/setup-java@v3
1616
with:
17-
java-version: '17'
17+
java-version: '25'
1818
distribution: 'zulu'
1919

2020
- name: Cache Maven packages

.github/workflows/sonar-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
- name: Set up JDK 17
14+
- name: Set up JDK 25
1515
uses: actions/setup-java@v3
1616
with:
17-
java-version: '17'
17+
java-version: '25'
1818
distribution: 'zulu'
1919

2020
- name: Build and Analyze Code Coverage

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Contains MTA model objects for different specification versions, parsers and val
1717
*WARNING*: With [Issue 117](https://github.com/cloudfoundry-incubator/multiapps-cli-plugin/issues/117) the master branch of this repository as well as other artifacts will be renamed. Adaptation to any CI/CD infrastructure & scripts will be required.
1818

1919
## Build tools
20-
All components are built with Java 17 and [Apache Maven](http://maven.apache.org/), version `3.9.6` or newer.
20+
All components are built with Java 25 and [Apache Maven](http://maven.apache.org/), version `3.9.6` or newer.
2121

22-
Make sure that your Maven is configured to use Java 17 by configuring the `JAVA_HOME` env to point to the correct Java JDK.
22+
Make sure that your Maven is configured to use Java 25 by configuring the `JAVA_HOME` env to point to the correct Java JDK.
2323
## Compiling and Packaging
2424
To build all components, run the following command from the root directory of the project:
2525
```

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@
7979
<artifactId>maven-compiler-plugin</artifactId>
8080
<version>3.14.1</version>
8181
<configuration>
82-
<source>17</source>
83-
<target>17</target>
82+
<source>25</source>
83+
<target>25</target>
8484
</configuration>
8585
</plugin>
8686
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->

0 commit comments

Comments
 (0)