Skip to content

Commit

Permalink
Commit from GitHub Actions (WildFly Quickstarts Update 'README.adoc's)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmartins committed Oct 28, 2024
1 parent 99d4735 commit b6ab8a3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
5 changes: 2 additions & 3 deletions microprofile-fault-tolerance/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -449,12 +449,11 @@ Add the following properties to the `pom.xml`:
<version.bom.ee>{versionServerBom}</version.bom.ee>
----
Also the project can be updated to use Java 8 as the minimum:
Also the project can be updated to use Java 17 as the minimum:
[source,options="nowrap"]
----
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
----
Before the dependencies are defined add the following boms:
Expand Down
5 changes: 2 additions & 3 deletions microprofile-jwt/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -526,12 +526,11 @@ Add the following properties to the `pom.xml`.
<version.bom.ee>{versionServerBom}</version.bom.ee>
----
Also the project can be updated to use Java 11 as the minimum.
Also the project can be updated to use Java 17 as the minimum.
[source,options="nowrap"]
----
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
----
Before the dependencies are defined add the following boms.
Expand Down
10 changes: 4 additions & 6 deletions microprofile-lra/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1854,20 +1854,18 @@ Open the project in your favourite IDE.
Open the generated `pom.xml`.
The first thing to do is to change the minimum JDK to Java 11 and set the other relevant version properties:
The first thing to do is to change the minimum JDK to Java 17 and set the other relevant version properties:
[source,xml,subs="attributes+"]
----
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<!-- the Maven project should use the minimum Java SE version supported -->
<maven.compiler.release>17</maven.compiler.release>
<!-- the version for the Server -->
<version.server>{versionServer}</version.server>
<!-- The versions for the BOMs, Packs and Plugins -->
<!-- the versions for the BOMs, Packs and Plugins -->
<version.bom.ee>{versionBomEE}</version.bom.ee>
<version.bom.expansion>{versionBomMicroprofile}</version.bom.expansion>
<version.plugin.wildfly>{versionPluginWildfly}</version.plugin.wildfly>
<version.plugin.wildfly-jar>{versionPluginWildflyJar}</version.plugin.wildfly-jar>
----
Next we need to setup our dependencies. Add the following section to your
Expand Down
5 changes: 2 additions & 3 deletions microprofile-reactive-messaging-kafka/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -601,12 +601,11 @@ cd microprofile-reactive-messaging-kafka
Open the project in your favourite IDE.
The project needs to be updated to use Java 8 as the minimum:
The project needs to be updated to use Java 17 as the minimum:
[source,options="nowrap"]
----
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
----
Next set up our dependencies. Add the following section to your
Expand Down

0 comments on commit b6ab8a3

Please sign in to comment.