Skip to content

Commit b32a449

Browse files
authored
Merge pull request #6233 from bstansberry/WFCORE-7040
[WFCORE-7040] Move to SE 17 as the minimum SE version
2 parents 7df14e0 + 7b27f1f commit b32a449

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/dep-diff-pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/setup-java@v4
3939
with:
4040
distribution: 'temurin'
41-
java-version: 11
41+
java-version: 17
4242

4343
# Run the caching against the base version only
4444
- name: Cache local Maven repository

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Building
1414

1515
Prerequisites:
1616

17-
* JDK 11 or newer - check `java -version`
17+
* JDK 17 or newer - check `java -version`
1818
* Maven 3.6.0 or newer - check `mvn -v`
1919

2020
To build with your own Maven installation:
@@ -63,7 +63,7 @@ Contributing
6363
Using Eclipse
6464
-------------
6565
1. Install the latest version of Eclipse.
66-
2. Make sure Xmx in Eclipse.ini is at least 1280M, and it's using java 11
66+
2. Make sure Xmx in Eclipse.ini is at least 1280M, and it's using java 17
6767
3. Launch Eclipse and install the m2e plugin, make sure it uses your repo configs
6868
(get it from: https://www.eclipse.org/m2e/
6969
or install "Maven Integration for Eclipse" from the Eclipse Marketplace).

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656

5757
<!-- Keep consistent with README.md and .mvn/wrapper/maven-wrapper.properties -->
5858
<maven.min.version>3.6.0</maven.min.version>
59-
<!-- Require Java 11 -->
60-
<maven.compiler.release>11</maven.compiler.release>
59+
<!-- Require Java 17 -->
60+
<maven.compiler.release>17</maven.compiler.release>
6161

6262
<!-- Standard client-side JPMS settings identified as meeting
6363
the needs of WildFly libraries meant for use in clients. -->
@@ -390,7 +390,7 @@
390390
</configuration>
391391
</plugin>
392392

393-
<!-- Ban bad dependencies and require Java 11 for deploying -->
393+
<!-- Ban bad dependencies and require Java 17 for deploying -->
394394
<plugin>
395395
<groupId>org.apache.maven.plugins</groupId>
396396
<artifactId>maven-enforcer-plugin</artifactId>
@@ -475,15 +475,15 @@
475475
</configuration>
476476
</execution>
477477
<execution>
478-
<id>require-java11</id>
478+
<id>require-java17</id>
479479
<goals>
480480
<goal>enforce</goal>
481481
</goals>
482482
<phase>deploy</phase>
483483
<configuration>
484484
<rules>
485485
<requireJavaVersion>
486-
<version>[11,12)</version>
486+
<version>[17,18)</version>
487487
</requireJavaVersion>
488488
</rules>
489489
</configuration>

0 commit comments

Comments
 (0)