Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WFCORE-7040] Move to SE 17 as the minimum SE version #6233

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dep-diff-pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
java-version: 17

# Run the caching against the base version only
- name: Cache local Maven repository
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Building

Prerequisites:

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

To build with your own Maven installation:
Expand Down Expand Up @@ -63,7 +63,7 @@ Contributing
Using Eclipse
-------------
1. Install the latest version of Eclipse.
2. Make sure Xmx in Eclipse.ini is at least 1280M, and it's using java 11
2. Make sure Xmx in Eclipse.ini is at least 1280M, and it's using java 17
3. Launch Eclipse and install the m2e plugin, make sure it uses your repo configs
(get it from: https://www.eclipse.org/m2e/
or install "Maven Integration for Eclipse" from the Eclipse Marketplace).
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@

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

<!-- Standard client-side JPMS settings identified as meeting
the needs of WildFly libraries meant for use in clients. -->
Expand Down Expand Up @@ -390,7 +390,7 @@
</configuration>
</plugin>

<!-- Ban bad dependencies and require Java 11 for deploying -->
<!-- Ban bad dependencies and require Java 17 for deploying -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
Expand Down Expand Up @@ -475,15 +475,15 @@
</configuration>
</execution>
<execution>
<id>require-java11</id>
<id>require-java17</id>
<goals>
<goal>enforce</goal>
</goals>
<phase>deploy</phase>
<configuration>
<rules>
<requireJavaVersion>
<version>[11,12)</version>
<version>[17,18)</version>
</requireJavaVersion>
</rules>
</configuration>
Expand Down
Loading