Skip to content

Commit b6ab8a3

Browse files
committed
Commit from GitHub Actions (WildFly Quickstarts Update 'README.adoc's)
1 parent 99d4735 commit b6ab8a3

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

microprofile-fault-tolerance/README.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -449,12 +449,11 @@ Add the following properties to the `pom.xml`:
449449
<version.bom.ee>{versionServerBom}</version.bom.ee>
450450
----
451451
452-
Also the project can be updated to use Java 8 as the minimum:
452+
Also the project can be updated to use Java 17 as the minimum:
453453
454454
[source,options="nowrap"]
455455
----
456-
<maven.compiler.source>1.8</maven.compiler.source>
457-
<maven.compiler.target>1.8</maven.compiler.target>
456+
<maven.compiler.release>17</maven.compiler.release>
458457
----
459458
460459
Before the dependencies are defined add the following boms:

microprofile-jwt/README.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -526,12 +526,11 @@ Add the following properties to the `pom.xml`.
526526
<version.bom.ee>{versionServerBom}</version.bom.ee>
527527
----
528528
529-
Also the project can be updated to use Java 11 as the minimum.
529+
Also the project can be updated to use Java 17 as the minimum.
530530
531531
[source,options="nowrap"]
532532
----
533-
<maven.compiler.source>11</maven.compiler.source>
534-
<maven.compiler.target>11</maven.compiler.target>
533+
<maven.compiler.release>17</maven.compiler.release>
535534
----
536535
537536
Before the dependencies are defined add the following boms.

microprofile-lra/README.adoc

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1854,20 +1854,18 @@ Open the project in your favourite IDE.
18541854
18551855
Open the generated `pom.xml`.
18561856
1857-
The first thing to do is to change the minimum JDK to Java 11 and set the other relevant version properties:
1857+
The first thing to do is to change the minimum JDK to Java 17 and set the other relevant version properties:
18581858
18591859
[source,xml,subs="attributes+"]
18601860
----
1861-
<maven.compiler.source>11</maven.compiler.source>
1862-
<maven.compiler.target>11</maven.compiler.target>
1863-
1861+
<!-- the Maven project should use the minimum Java SE version supported -->
1862+
<maven.compiler.release>17</maven.compiler.release>
18641863
<!-- the version for the Server -->
18651864
<version.server>{versionServer}</version.server>
1866-
<!-- The versions for the BOMs, Packs and Plugins -->
1865+
<!-- the versions for the BOMs, Packs and Plugins -->
18671866
<version.bom.ee>{versionBomEE}</version.bom.ee>
18681867
<version.bom.expansion>{versionBomMicroprofile}</version.bom.expansion>
18691868
<version.plugin.wildfly>{versionPluginWildfly}</version.plugin.wildfly>
1870-
<version.plugin.wildfly-jar>{versionPluginWildflyJar}</version.plugin.wildfly-jar>
18711869
----
18721870
18731871
Next we need to setup our dependencies. Add the following section to your

microprofile-reactive-messaging-kafka/README.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -601,12 +601,11 @@ cd microprofile-reactive-messaging-kafka
601601
602602
Open the project in your favourite IDE.
603603
604-
The project needs to be updated to use Java 8 as the minimum:
604+
The project needs to be updated to use Java 17 as the minimum:
605605
606606
[source,options="nowrap"]
607607
----
608-
<maven.compiler.source>1.8</maven.compiler.source>
609-
<maven.compiler.target>1.8</maven.compiler.target>
608+
<maven.compiler.release>17</maven.compiler.release>
610609
----
611610
612611
Next set up our dependencies. Add the following section to your

0 commit comments

Comments
 (0)