Skip to content

Commit 94b9927

Browse files
authored
Merge pull request #1002 from emmartins/rel-35.0.0.Final
Rel 35.0.0.final
2 parents 0bd1a4e + f5b8db6 commit 94b9927

File tree

151 files changed

+207
-854
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+207
-854
lines changed

batch-processing/README-source.adoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,7 @@ include::../shared-doc/run-integration-tests-with-server-distribution.adoc[level
138138
include::../shared-doc/undeploy-the-quickstart.adoc[leveloffset=+2]
139139

140140
// Build and run sections for other environments/builds
141-
ifndef::ProductRelease,EAPXPRelease[]
142141
include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1]
143-
endif::[]
144142
include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1]
145143
ifndef::ProductRelease,EAPXPRelease[]
146144
// Kubernetes

batch-processing/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</parent>
3131

3232
<artifactId>batch-processing</artifactId>
33-
<version>35.0.0.Final-SNAPSHOT</version>
33+
<version>35.0.0.Final</version>
3434
<packaging>war</packaging>
3535
<name>Quickstart: batch-processing</name>
3636
<description>Shows how to use a Chunk oriented batch processing</description>
@@ -47,10 +47,10 @@
4747
<!-- the Maven project should use the minimum Java SE version supported -->
4848
<maven.compiler.release>17</maven.compiler.release>
4949
<!-- the version for the Server -->
50-
<version.server>35.0.0.Beta1</version.server>
50+
<version.server>35.0.0.Final</version.server>
5151
<!-- the versions for BOMs, Packs and Plugins -->
5252
<version.bom.ee>${version.server}</version.bom.ee>
53-
<version.plugin.wildfly>5.1.0.Final</version.plugin.wildfly>
53+
<version.plugin.wildfly>5.1.1.Final</version.plugin.wildfly>
5454
</properties>
5555

5656
<dependencyManagement>

bmt/README-source.adoc

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ When you run this example, you are presented with a *Use bean managed Entity Man
2828

2929
This example shows how to transactionally insert key value pairs into the database and demonstrates the requirements on the developer with respect to the JPA Entity Manager.
3030

31-
ifndef::EAPCDRelease[]
32-
3331
// Link to the quickstart source
3432
include::../shared-doc/view-the-source.adoc[leveloffset=+1]
3533
// Considerations for Use in a Production Environment
@@ -70,29 +68,9 @@ include::../shared-doc/run-integration-tests-with-server-distribution.adoc[level
7068
include::../shared-doc/undeploy-the-quickstart.adoc[leveloffset=+1]
7169

7270
// Build and run sections for other environments/builds
73-
ifndef::ProductRelease,EAPXPRelease[]
7471
include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1]
75-
endif::[]
7672
include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1]
77-
endif::[]
7873
ifndef::ProductRelease,EAPXPRelease[]
7974
// Kubernetes
8075
include::../shared-doc/build-and-run-the-quickstart-with-kubernetes.adoc[leveloffset=+1]
81-
endif::[]
82-
//*************************************************
83-
// Product Release content only
84-
//*************************************************
85-
ifdef::ProductRelease[]
86-
87-
// Getting Started with OpenShift
88-
include::../shared-doc/openshift-getting-started.adoc[leveloffset=+1]
89-
//Prepare OpenShift for Quickstart Deployment
90-
include::../shared-doc/openshift-create-project.adoc[leveloffset=+1]
91-
// Import the Latest {xpaasproduct-shortname} Image Streams and Templates
92-
include::../shared-doc/openshift-import-imagestreams-templates.adoc[leveloffset=+1]
93-
// Deploy the {ProductShortName} Source-to-Image (S2I) Quickstart to OpenShift
94-
include::../shared-doc/openshift-deploy-project.adoc[leveloffset=+1]
95-
// Openshift post deployment tasks
96-
include::../shared-doc/openshift-post-deployment-tasks.adoc[leveloffset=+1]
97-
9876
endif::[]

bmt/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</parent>
3131

3232
<artifactId>bmt</artifactId>
33-
<version>35.0.0.Final-SNAPSHOT</version>
33+
<version>35.0.0.Final</version>
3434
<packaging>war</packaging>
3535
<name>Quickstart: bmt</name>
3636
<description>This project demonstrates how to use Bean Managed Transactions</description>
@@ -47,10 +47,10 @@
4747
<!-- the Maven project should use the minimum Java SE version supported -->
4848
<maven.compiler.release>17</maven.compiler.release>
4949
<!-- the version for the Server -->
50-
<version.server>35.0.0.Beta1</version.server>
50+
<version.server>35.0.0.Final</version.server>
5151
<!-- the versions for BOMs, Packs and Plugins -->
5252
<version.bom.ee>${version.server}</version.bom.ee>
53-
<version.plugin.wildfly>5.1.0.Final</version.plugin.wildfly>
53+
<version.plugin.wildfly>5.1.1.Final</version.plugin.wildfly>
5454
</properties>
5555

5656
<dependencyManagement>

cmt/README-source.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ include::../shared-doc/attributes.adoc[]
55
:level: Intermediate
66
:technologies: EJB, CMT, JMS
77
:openshift: true
8-
:portedToGlow: true
98

109
[abstract]
1110
The `cmt` quickstart demonstrates Container-Managed Transactions (CMT), showing how to use transactions managed by the container.
@@ -84,9 +83,7 @@ include::../shared-doc/run-integration-tests-with-server-distribution.adoc[level
8483
include::../shared-doc/undeploy-the-quickstart.adoc[leveloffset=+2]
8584

8685
// Build and run sections for other environments/builds
87-
ifndef::ProductRelease,EAPXPRelease[]
8886
include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1]
89-
endif::[]
9087
include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1]
9188
ifndef::ProductRelease,EAPXPRelease[]
9289
// Kubernetes

cmt/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<relativePath/>
3030
</parent>
3131
<artifactId>cmt</artifactId>
32-
<version>35.0.0.Final-SNAPSHOT</version>
32+
<version>35.0.0.Final</version>
3333
<packaging>war</packaging>
3434
<name>Quickstart: cmt</name>
3535
<description>This project demonstrates how to use transactions managed by the container</description>
@@ -46,10 +46,10 @@
4646
<!-- the Maven project should use the minimum Java SE version supported -->
4747
<maven.compiler.release>17</maven.compiler.release>
4848
<!-- the version for the Server -->
49-
<version.server>35.0.0.Beta1</version.server>
49+
<version.server>35.0.0.Final</version.server>
5050
<!-- the versions for BOMs, Packs and Plugins -->
5151
<version.bom.ee>${version.server}</version.bom.ee>
52-
<version.plugin.wildfly>5.1.0.Final</version.plugin.wildfly>
52+
<version.plugin.wildfly>5.1.1.Final</version.plugin.wildfly>
5353
</properties>
5454

5555
<dependencyManagement>

dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
Maintain separation between the artifact id and the version to help prevent
2626
merge conflicts between commits changing the GA and those changing the V.
2727
-->
28-
<version>35.0.0.Final-SNAPSHOT</version>
28+
<version>35.0.0.Final</version>
2929
</parent>
3030

3131
<artifactId>quickstarts-dist</artifactId>

ee-security/README-source.adoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,7 @@ include::../shared-doc/restore-standalone-server-configuration.adoc[leveloffset=
126126
include::../shared-doc/restore-standalone-server-configuration-manual.adoc[leveloffset=+3]
127127

128128
// Build and run sections for other environments/builds
129-
ifndef::ProductRelease,EAPXPRelease[]
130129
include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1]
131-
endif::[]
132130
include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1]
133131
ifndef::ProductRelease,EAPXPRelease[]
134132
// Kubernetes

ee-security/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</parent>
3131

3232
<artifactId>ee-security</artifactId>
33-
<version>35.0.0.Final-SNAPSHOT</version>
33+
<version>35.0.0.Final</version>
3434
<packaging>war</packaging>
3535
<name>Quickstart: ee-security</name>
3636
<description>This project demonstrates using EE security</description>
@@ -47,10 +47,10 @@
4747
<!-- the Maven project should use the minimum Java SE version supported -->
4848
<maven.compiler.release>17</maven.compiler.release>
4949
<!-- the version for the Server -->
50-
<version.server>35.0.0.Beta1</version.server>
50+
<version.server>35.0.0.Final</version.server>
5151
<!-- the versions for BOMs, Packs and Plugins -->
5252
<version.bom.ee>${version.server}</version.bom.ee>
53-
<version.plugin.wildfly>5.1.0.Final</version.plugin.wildfly>
53+
<version.plugin.wildfly>5.1.1.Final</version.plugin.wildfly>
5454
</properties>
5555

5656
<dependencyManagement>

ejb-multi-server/app-main/ear/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.wildfly.quickstarts</groupId>
2323
<artifactId>ejb-multi-server-app-main</artifactId>
24-
<version>35.0.0.Final-SNAPSHOT</version>
24+
<version>35.0.0.Final</version>
2525
</parent>
2626
<artifactId>ejb-multi-server-app-main-ear</artifactId>
2727
<packaging>ear</packaging>

0 commit comments

Comments
 (0)