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

[WFLY-17887] The minimum support Java version for WildFly is still Java 11. #27

Merged
merged 1 commit into from
Apr 18, 2023
Merged
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 wildfly-jakartaee-ear-archetype/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Also test whether the Arquillian unit test "SampleIT" still works, see below.

[[build]]
==== Build
To build the archetype, you need at least Java 17. Run this command:
To build the archetype, you need at least Java 11. Run this command:
[source,options="nowrap"]
----
$ mvn clean install
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<version.war.plugin>3.3.2</version.war.plugin>

<!-- maven-compiler-plugin -->
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.release>11</maven.compiler.release>
</properties>

<!-- the JBoss community and Red Hat GA Maven repositories -->
Expand Down
2 changes: 1 addition & 1 deletion wildfly-jakartaee-webapp-archetype/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Also test whether the Arquillian unit test "SampleIT" still works, see below.

[[build]]
==== Build
To build the archetype, you need at least Java 17. Run this command:
To build the archetype, you need at least Java 11. Run this command:
[source,options="nowrap"]
----
$ mvn clean install
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<version.war.plugin>3.3.2</version.war.plugin>

<!-- maven-compiler-plugin -->
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.release>11</maven.compiler.release>
</properties>

<!-- the JBoss community and Red Hat GA Maven repositories -->
Expand Down
2 changes: 1 addition & 1 deletion wildfly-subsystem-archetype/Readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ In file "src/main/resources/archetype-resources/Readme.txt", update the version

[[build]]
==== Build
To build the archetype, you need at least Java 17. Run this command:
To build the archetype, you need at least Java 11. Run this command:
[source,options="nowrap"]
----
$ mvn clean install
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<version.antrun.plugin>3.1.0</version.antrun.plugin>

<!-- maven-compiler-plugin -->
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.release>11</maven.compiler.release>
</properties>


Expand All @@ -39,6 +39,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.compiler.plugin}</version>
<configuration>
<source>11</source>
<target>11</target>
<!-- put your configurations here -->
</configuration>
</plugin>
Expand Down