File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 38
38
uses : actions/setup-java@v4
39
39
with :
40
40
distribution : ' temurin'
41
- java-version : 11
41
+ java-version : 17
42
42
43
43
# Run the caching against the base version only
44
44
- name : Cache local Maven repository
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Building
14
14
15
15
Prerequisites:
16
16
17
- * JDK 11 or newer - check ` java -version `
17
+ * JDK 17 or newer - check ` java -version `
18
18
* Maven 3.6.0 or newer - check ` mvn -v `
19
19
20
20
To build with your own Maven installation:
@@ -63,7 +63,7 @@ Contributing
63
63
Using Eclipse
64
64
-------------
65
65
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
67
67
3 . Launch Eclipse and install the m2e plugin, make sure it uses your repo configs
68
68
(get it from: https://www.eclipse.org/m2e/
69
69
or install "Maven Integration for Eclipse" from the Eclipse Marketplace).
Original file line number Diff line number Diff line change 56
56
57
57
<!-- Keep consistent with README.md and .mvn/wrapper/maven-wrapper.properties -->
58
58
<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>
61
61
62
62
<!-- Standard client-side JPMS settings identified as meeting
63
63
the needs of WildFly libraries meant for use in clients. -->
390
390
</configuration >
391
391
</plugin >
392
392
393
- <!-- Ban bad dependencies and require Java 11 for deploying -->
393
+ <!-- Ban bad dependencies and require Java 17 for deploying -->
394
394
<plugin >
395
395
<groupId >org.apache.maven.plugins</groupId >
396
396
<artifactId >maven-enforcer-plugin</artifactId >
475
475
</configuration >
476
476
</execution >
477
477
<execution >
478
- <id >require-java11 </id >
478
+ <id >require-java17 </id >
479
479
<goals >
480
480
<goal >enforce</goal >
481
481
</goals >
482
482
<phase >deploy</phase >
483
483
<configuration >
484
484
<rules >
485
485
<requireJavaVersion >
486
- <version >[11,12 )</version >
486
+ <version >[17,18 )</version >
487
487
</requireJavaVersion >
488
488
</rules >
489
489
</configuration >
You can’t perform that action at this time.
0 commit comments