diff --git a/README.adoc b/README.adoc
index 00df4f8eba..6ea9ca6c9b 100644
--- a/README.adoc
+++ b/README.adoc
@@ -395,13 +395,28 @@ NOTE: Some of these quickstarts use the H2 database included with WildFly. It is
[cols="1,1,2,1,1", options="header"]
|===
| Quickstart Name | Demonstrated Technologies | Description | Experience Level Required | Prerequisites
+| link:bean-validation-custom-constraint/README{outfilesuffix}[bean-validation-custom-constraint]|CDI, JPA, BV | The `bean-validation-custom-constraint` quickstart demonstrates how to use the Bean Validation API to define custom constraints and validators. | Beginner | _none_
| link:cmt/README{outfilesuffix}[cmt]|EJB, CMT, JMS | The `cmt` quickstart demonstrates Container-Managed Transactions (CMT), showing how to use transactions managed by the container. | Intermediate | _none_
-| link:ee-security/README{outfilesuffix}[ee-security]|EE Security, Servlet, CDI, WildFly Elytron | The `ee-security` quickstart demonstrates how EE security can be used with WildFly Elytron. | Intermediate | _none_
+| link:ee-security/README{outfilesuffix}[ee-security]|EE Security, Servlet, CDI | The `ee-security` quickstart demonstrates Jakarta EE security. | Intermediate | _none_
+| link:ejb-security-context-propagation/README{outfilesuffix}[ejb-security-context-propagation]|EJB, Security | The `ejb-security-context-propagation` quickstart demonstrates how the security context can be propagated to a remote EJB using a remote outbound connection configuration | Advanced | _none_
+| link:ejb-security-programmatic-auth/README{outfilesuffix}[ejb-security-programmatic-auth]|EJB, Security | The `ejb-security-programmatic-auth` quickstart demonstrates how to programmatically setup different identities when invoking a remote secured EJB. | Intermediate | _none_
| link:helloworld/README{outfilesuffix}[helloworld]|CDI, Servlet | The `helloworld` quickstart demonstrates the use of CDI and Servlet 3 and is a good starting point to verify {productName} is configured correctly. | Beginner | _none_
+| link:helloworld-mutual-ssl/README{outfilesuffix}[helloworld-mutual-ssl]|Mutual TLS, Undertow | The `helloworld-mutual-ssl` quickstart is a basic example that demonstrates mutual TLS configuration in {productName} | Intermediate | _none_
+| link:helloworld-mutual-ssl-secured/README{outfilesuffix}[helloworld-mutual-ssl-secured]|Mutual TLS, Security, Undertow | The `helloworld-mutual-ssl-secured` quickstart demonstrates securing a Web application using client mutual TLS authentication and role-based access control | Intermediate | _none_
| link:helloworld-ws/README{outfilesuffix}[helloworld-ws]|JAX-WS | The `helloworld-ws` quickstart demonstrates a simple Hello World application, bundled and deployed as a WAR, that uses JAX-WS to say Hello. | Beginner | _none_
| link:jaxrs-client/README{outfilesuffix}[jaxrs-client]|JAX-RS | The `jaxrs-client` quickstart demonstrates JAX-RS Client API, which interacts with a JAX-RS Web service that runs on {productName}. | Beginner | _none_
+| link:jaxrs-jwt/README{outfilesuffix}[jaxrs-jwt]|JAX-RS, Security | The `jaxrs-jwt` quickstart demonstrates a JAX-RS secured application using JSON Web Tokens (JWT) with Elytron. | Intermediate | _none_
| link:kitchensink/README{outfilesuffix}[kitchensink]|CDI, JSF, JPA, EJB, JAX-RS, BV | The `kitchensink` quickstart demonstrates a {javaVersion} web-enabled database application using JSF, CDI, EJB, JPA, and Bean Validation. | Intermediate | _none_
+| link:microprofile-config/README{outfilesuffix}[microprofile-config]|MicroProfile Config | The `microprofile-config` quickstart demonstrates the use of the MicroProfile Config specification in {productName}. | Beginner | _none_
+| link:microprofile-health/README{outfilesuffix}[microprofile-health]|MicroProfile Health | The `microprofile-health` quickstart demonstrates the use of the MicroProfile Health specification in {productName}. | Beginner | _none_
+| link:microprofile-jwt/README{outfilesuffix}[microprofile-jwt]|JWT, Security, MicroProfile | The `microprofile-jwt` quickstart demonstrates the use of the MicroProfile JWT specification in {productName}. | Intermediate | _none_
+| link:microprofile-metrics/README{outfilesuffix}[microprofile-metrics]|MicroProfile Metrics | The `microprofile-metrics` quickstart demonstrates the use of the MicroProfile Metrics specification use in {productName}. | Beginner | _none_
+| link:microprofile-openapi/README{outfilesuffix}[microprofile-openapi]|MicroProfile OpenAPI | This guide demonstrate how to use the MicroProfile OpenAPI functionality in {productName} to expose an OpenAPI document for a simple REST application. | Beginner | _none_
+| link:microprofile-opentracing/README{outfilesuffix}[microprofile-opentracing]|MicroProfile OpenTracing | The `microprofile-opentracing` quickstart demonstrates the use of the MicroProfile OpenTracing specification in {productName}. | Beginner | _none_
+| link:microprofile-reactive-messaging-kafka/README{outfilesuffix}[microprofile-reactive-messaging-kafka]|MicroProfile Reactive Messaging | The `microprofile-reactive-messaging-kafka` quickstart demonstrates the use of the MicroProfile Reactive Messaging specification backed by Apache Kafka in {productName}. | Beginner | _none_
+| link:microprofile-rest-client/README{outfilesuffix}[microprofile-rest-client]|MicroProfile REST Client | The `microprofile-rest-client` quickstart demonstrates the use of the MicroProfile REST Client specification in {productName}. | Beginner | _none_
| link:numberguess/README{outfilesuffix}[numberguess]|CDI, JSF | The `numberguess` quickstart demonstrates the use of CDI (Contexts and Dependency Injection) and JSF (JavaServer Faces) in {productName}. | Beginner | _none_
+| link:security-domain-to-domain/README{outfilesuffix}[security-domain-to-domain]|Servlet, EJB, Security | The `security-domain-to-domain` quickstart demonstrates the propagation of an identity across two different deployments using different security domains. | Advanced | _none_
| link:servlet-security/README{outfilesuffix}[servlet-security]|Servlet, Security | The `servlet-security` quickstart demonstrates the use of Jakarta EE declarative security to control access to Servlets and Security in {productName}. | Intermediate | _none_
| link:temperature-converter/README{outfilesuffix}[temperature-converter]|CDI, JSF, SLSB EJB | The `temperature-converter` quickstart does temperature conversion using an EJB Stateless Session Bean (SLSB), CDI, and a JSF front-end client. | Beginner | _none_
| link:thread-racing/README{outfilesuffix}[thread-racing]|Batch, CDI, EE Concurrency, JAX-RS, JMS, JPA, JSON, Web Sockets | A thread racing web application that demonstrates technologies introduced or updated in the latest Jakarta EE specification. | Beginner | _none_
diff --git a/batch-processing/pom.xml b/batch-processing/pom.xml
index b32fec3b9b..5e753a0f9c 100644
--- a/batch-processing/pom.xml
+++ b/batch-processing/pom.xml
@@ -30,7 +30,7 @@
batch-processing
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: batch-processing
Shows how to use a Chunk oriented batch processing
diff --git a/bean-validation-custom-constraint/pom.xml b/bean-validation-custom-constraint/pom.xml
index 2cb2971572..57d79992a8 100644
--- a/bean-validation-custom-constraint/pom.xml
+++ b/bean-validation-custom-constraint/pom.xml
@@ -30,7 +30,7 @@
bean-validation-custom-constraint
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: bean-validation-custom-constraint
This project demonstrates Bean Validation Custom Constraints
diff --git a/bmt/pom.xml b/bmt/pom.xml
index 4889de8d82..0ce03d4fc9 100644
--- a/bmt/pom.xml
+++ b/bmt/pom.xml
@@ -30,7 +30,7 @@
bmt
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: bmt
This project demonstrates how to use Bean Managed Transactions
diff --git a/cmt/pom.xml b/cmt/pom.xml
index bbf9c0bb05..5e25bb18bf 100644
--- a/cmt/pom.xml
+++ b/cmt/pom.xml
@@ -29,7 +29,7 @@
cmt
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: cmt
This project demonstrates how to use transactions managed by the container
diff --git a/contacts-jquerymobile/functional-tests/pom.xml b/contacts-jquerymobile/functional-tests/pom.xml
index 928b1cbe6b..3df4395e33 100644
--- a/contacts-jquerymobile/functional-tests/pom.xml
+++ b/contacts-jquerymobile/functional-tests/pom.xml
@@ -28,7 +28,7 @@
contacts-jquerymobile-test-webdriver
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
Quickstart: Contacts JQueryMobile test via WebDriver with Arquillian
This project tests a Contacts JQueryMobile for use on JBoss EAP by WebDriver
diff --git a/contacts-jquerymobile/pom.xml b/contacts-jquerymobile/pom.xml
index d17def39cb..d21f2d9a0c 100644
--- a/contacts-jquerymobile/pom.xml
+++ b/contacts-jquerymobile/pom.xml
@@ -29,7 +29,7 @@
contacts-jquerymobile
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: contacts-jquerymobile
A Jakarta EE HTML5 mobile web application for use with JBoss EAP
diff --git a/dist/pom.xml b/dist/pom.xml
index 33f9d90fe6..f66a2f5d90 100644
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
quickstarts-dist
diff --git a/ee-security/pom.xml b/ee-security/pom.xml
index 9a1f20bbc4..6e2edb8a43 100644
--- a/ee-security/pom.xml
+++ b/ee-security/pom.xml
@@ -30,7 +30,7 @@
ee-security
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: ee-security
This project demonstrates using EE security
diff --git a/ejb-multi-server/app-main/ear/pom.xml b/ejb-multi-server/app-main/ear/pom.xml
index 318ea560a8..0de21cc8a7 100644
--- a/ejb-multi-server/app-main/ear/pom.xml
+++ b/ejb-multi-server/app-main/ear/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server-app-main
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-main-ear
ear
diff --git a/ejb-multi-server/app-main/ejb/pom.xml b/ejb-multi-server/app-main/ejb/pom.xml
index 3c439b7c0e..e54f7a3363 100644
--- a/ejb-multi-server/app-main/ejb/pom.xml
+++ b/ejb-multi-server/app-main/ejb/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server-app-main
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-main-ejb
ejb
diff --git a/ejb-multi-server/app-main/pom.xml b/ejb-multi-server/app-main/pom.xml
index f9ebe6320f..14a62b697e 100644
--- a/ejb-multi-server/app-main/pom.xml
+++ b/ejb-multi-server/app-main/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
ejb-multi-server-app-main
diff --git a/ejb-multi-server/app-main/web/pom.xml b/ejb-multi-server/app-main/web/pom.xml
index efe276876c..0e7c928328 100644
--- a/ejb-multi-server/app-main/web/pom.xml
+++ b/ejb-multi-server/app-main/web/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server-app-main
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-main-web
war
diff --git a/ejb-multi-server/app-one/ear/pom.xml b/ejb-multi-server/app-one/ear/pom.xml
index f8edebd57c..37e6c3ea36 100644
--- a/ejb-multi-server/app-one/ear/pom.xml
+++ b/ejb-multi-server/app-one/ear/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server-app-one
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-one-ear
ear
diff --git a/ejb-multi-server/app-one/ejb/pom.xml b/ejb-multi-server/app-one/ejb/pom.xml
index bbf09ea9fe..29ea91f0a4 100644
--- a/ejb-multi-server/app-one/ejb/pom.xml
+++ b/ejb-multi-server/app-one/ejb/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server-app-one
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-one-ejb
ejb
diff --git a/ejb-multi-server/app-one/pom.xml b/ejb-multi-server/app-one/pom.xml
index 98ca5829ed..4321ee59ef 100644
--- a/ejb-multi-server/app-one/pom.xml
+++ b/ejb-multi-server/app-one/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-one
pom
diff --git a/ejb-multi-server/app-two/ear/pom.xml b/ejb-multi-server/app-two/ear/pom.xml
index 69a3f622a6..a14d12fbfd 100644
--- a/ejb-multi-server/app-two/ear/pom.xml
+++ b/ejb-multi-server/app-two/ear/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server-app-two
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-two-ear
ear
diff --git a/ejb-multi-server/app-two/ejb/pom.xml b/ejb-multi-server/app-two/ejb/pom.xml
index d12cfb64ed..0c2719bf81 100644
--- a/ejb-multi-server/app-two/ejb/pom.xml
+++ b/ejb-multi-server/app-two/ejb/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server-app-two
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-two-ejb
ejb
diff --git a/ejb-multi-server/app-two/pom.xml b/ejb-multi-server/app-two/pom.xml
index 367994cd7b..ecb8f98cf0 100644
--- a/ejb-multi-server/app-two/pom.xml
+++ b/ejb-multi-server/app-two/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-two
pom
diff --git a/ejb-multi-server/app-web/pom.xml b/ejb-multi-server/app-web/pom.xml
index 3cb39790e8..baf253cdaa 100644
--- a/ejb-multi-server/app-web/pom.xml
+++ b/ejb-multi-server/app-web/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-app-web
war
diff --git a/ejb-multi-server/client/pom.xml b/ejb-multi-server/client/pom.xml
index 2742c97ccc..12d0f9cb71 100644
--- a/ejb-multi-server/client/pom.xml
+++ b/ejb-multi-server/client/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-multi-server
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-multi-server-client
jar
diff --git a/ejb-multi-server/pom.xml b/ejb-multi-server/pom.xml
index 1fac79c128..9e8911c2ad 100644
--- a/ejb-multi-server/pom.xml
+++ b/ejb-multi-server/pom.xml
@@ -29,7 +29,7 @@
ejb-multi-server
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: ejb-multi-server
A project that demonstrates multiple applications deployed on different servers.
diff --git a/ejb-remote/client/pom.xml b/ejb-remote/client/pom.xml
index 3925072bae..d7a617e5d3 100644
--- a/ejb-remote/client/pom.xml
+++ b/ejb-remote/client/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-remote
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
ejb-remote-client
diff --git a/ejb-remote/pom.xml b/ejb-remote/pom.xml
index c11c5ec31b..8eb5ffcdde 100644
--- a/ejb-remote/pom.xml
+++ b/ejb-remote/pom.xml
@@ -29,7 +29,7 @@
ejb-remote
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: ejb-remote
This project demonstrates how to access an EJB from a remote client
diff --git a/ejb-remote/server-side/pom.xml b/ejb-remote/server-side/pom.xml
index e2cc8e76d9..1bdf41d68d 100644
--- a/ejb-remote/server-side/pom.xml
+++ b/ejb-remote/server-side/pom.xml
@@ -20,7 +20,7 @@
org.wildfly.quickstarts
ejb-remote
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
ejb-remote-server-side
diff --git a/ejb-security-context-propagation/pom.xml b/ejb-security-context-propagation/pom.xml
index 9e73fc464e..69e67c1d12 100644
--- a/ejb-security-context-propagation/pom.xml
+++ b/ejb-security-context-propagation/pom.xml
@@ -29,7 +29,7 @@
ejb-security-context-propagation
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb
Quickstart: ejb-security-context-propagation
This project demonstrates the security context propagation between remote EJBs
diff --git a/ejb-security-programmatic-auth/pom.xml b/ejb-security-programmatic-auth/pom.xml
index 2d23c6cb5b..4d999f9c20 100644
--- a/ejb-security-programmatic-auth/pom.xml
+++ b/ejb-security-programmatic-auth/pom.xml
@@ -29,7 +29,7 @@
ejb-security-programmatic-auth
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jar
Quickstart: ejb-security-programmatic-auth
This project demonstrates how to authenticate remote clients using the programmatic API
diff --git a/ejb-throws-exception/ear/pom.xml b/ejb-throws-exception/ear/pom.xml
index 633b3404e3..54315c8648 100644
--- a/ejb-throws-exception/ear/pom.xml
+++ b/ejb-throws-exception/ear/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-throws-exception
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-throws-exception-ear
ear
diff --git a/ejb-throws-exception/ejb-api/pom.xml b/ejb-throws-exception/ejb-api/pom.xml
index 88e27a6856..49e7d126f3 100644
--- a/ejb-throws-exception/ejb-api/pom.xml
+++ b/ejb-throws-exception/ejb-api/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-throws-exception
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-throws-exception-ejb-api
jar
diff --git a/ejb-throws-exception/ejb/pom.xml b/ejb-throws-exception/ejb/pom.xml
index b0bbc2f9da..bfc966954e 100644
--- a/ejb-throws-exception/ejb/pom.xml
+++ b/ejb-throws-exception/ejb/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-throws-exception
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-throws-exception-ejb
ejb
diff --git a/ejb-throws-exception/pom.xml b/ejb-throws-exception/pom.xml
index acb49768f3..310aeaabdf 100644
--- a/ejb-throws-exception/pom.xml
+++ b/ejb-throws-exception/pom.xml
@@ -29,7 +29,7 @@
ejb-throws-exception
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: ejb-throws-exception
This project demonstrates how to throw an exception in an EJB and catch it in the web layer
diff --git a/ejb-throws-exception/web/pom.xml b/ejb-throws-exception/web/pom.xml
index 8707e68e22..c9c943adec 100644
--- a/ejb-throws-exception/web/pom.xml
+++ b/ejb-throws-exception/web/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
ejb-throws-exception
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb-throws-exception-web
war
diff --git a/ejb-timer/pom.xml b/ejb-timer/pom.xml
index b908078f94..4f5d7b0a8f 100644
--- a/ejb-timer/pom.xml
+++ b/ejb-timer/pom.xml
@@ -29,7 +29,7 @@
ejb-timer
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: ejb-timer
A sample Jakarta EE project demonstrating how to use EJB timer (@Schedule and @Timeout).
diff --git a/ejb-txn-remote-call/client/pom.xml b/ejb-txn-remote-call/client/pom.xml
index bfd78da26e..835e896a58 100644
--- a/ejb-txn-remote-call/client/pom.xml
+++ b/ejb-txn-remote-call/client/pom.xml
@@ -30,7 +30,7 @@
ejb-txn-remote-call-client
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: ejb-txn-remote-call-client
The project is the application to be deployed on the client server to call the second server
diff --git a/ejb-txn-remote-call/pom.xml b/ejb-txn-remote-call/pom.xml
index 4d367597b3..c69c462820 100644
--- a/ejb-txn-remote-call/pom.xml
+++ b/ejb-txn-remote-call/pom.xml
@@ -30,7 +30,7 @@
ejb-txn-remote-call
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: ejb-txn-remote-call
The project demonstrates how to make EJB remote calls from server to server with transaction propagation.
diff --git a/ejb-txn-remote-call/server/pom.xml b/ejb-txn-remote-call/server/pom.xml
index 22405888d7..90d84edfbb 100644
--- a/ejb-txn-remote-call/server/pom.xml
+++ b/ejb-txn-remote-call/server/pom.xml
@@ -30,7 +30,7 @@
ejb-txn-remote-call-server
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: ejb-txn-remote-call-server
The project is the application to be deployed on the second server to receive the call
diff --git a/ha-singleton-deployment/pom.xml b/ha-singleton-deployment/pom.xml
index 1176bc63fb..9cbd09a49b 100644
--- a/ha-singleton-deployment/pom.xml
+++ b/ha-singleton-deployment/pom.xml
@@ -36,7 +36,7 @@
ha-singleton-deployment
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
ejb
Quickstart: HA Singleton Deployment
This quickstart demonstrates the recommended way to deploy any service as a cluster-wide singleton.
diff --git a/ha-singleton-service/pom.xml b/ha-singleton-service/pom.xml
index d8cf314c39..c0518ff31d 100644
--- a/ha-singleton-service/pom.xml
+++ b/ha-singleton-service/pom.xml
@@ -31,7 +31,7 @@
ha-singleton-service
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jar
Quickstart: HA Singleton Service
This quickstart demonstrates a singleton MSC service packaged in a jar.
diff --git a/helloworld-jms/pom.xml b/helloworld-jms/pom.xml
index 198df45e77..48ffa6121f 100644
--- a/helloworld-jms/pom.xml
+++ b/helloworld-jms/pom.xml
@@ -29,7 +29,7 @@
helloworld-jms
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jar
Quickstart: helloworld-jms
A Helloworld JMS external producer/consumer client
diff --git a/helloworld-mdb/pom.xml b/helloworld-mdb/pom.xml
index 4e87cfe028..a68bd84375 100644
--- a/helloworld-mdb/pom.xml
+++ b/helloworld-mdb/pom.xml
@@ -30,7 +30,7 @@
helloworld-mdb
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: helloworld-mdb
This project demonstrates a hello world Message-Driven Bean with Servlet 3.0 as client
diff --git a/helloworld-mutual-ssl-secured/pom.xml b/helloworld-mutual-ssl-secured/pom.xml
index cb1d15feca..536dcce803 100644
--- a/helloworld-mutual-ssl-secured/pom.xml
+++ b/helloworld-mutual-ssl-secured/pom.xml
@@ -30,7 +30,7 @@
helloworld-mutual-ssl-secured
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: helloworld-mutual-ssl-secured
Securing helloworld Web app with mutual client ssl authentication and role-based access control
diff --git a/helloworld-mutual-ssl/pom.xml b/helloworld-mutual-ssl/pom.xml
index ec67656728..a1534a17ab 100644
--- a/helloworld-mutual-ssl/pom.xml
+++ b/helloworld-mutual-ssl/pom.xml
@@ -30,7 +30,7 @@
helloworld-mutual-ssl
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: helloworld-mutual-ssl
Helloworld Mutual SSL Authentication
diff --git a/helloworld-singleton/pom.xml b/helloworld-singleton/pom.xml
index 436c7988d8..24983ae88d 100644
--- a/helloworld-singleton/pom.xml
+++ b/helloworld-singleton/pom.xml
@@ -29,7 +29,7 @@
helloworld-singleton
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: helloworld-singleton
This project demonstrates a Hello World Singleton Session Bean with a JSF client
diff --git a/helloworld-ws/pom.xml b/helloworld-ws/pom.xml
index a854575635..63de14b8e1 100644
--- a/helloworld-ws/pom.xml
+++ b/helloworld-ws/pom.xml
@@ -29,7 +29,7 @@
helloworld-ws
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: helloworld-ws
This project demonstrates a Hello World JAX-WS web service
diff --git a/helloworld/pom.xml b/helloworld/pom.xml
index 122a4c415e..1cb90e2fcc 100644
--- a/helloworld/pom.xml
+++ b/helloworld/pom.xml
@@ -29,7 +29,7 @@
helloworld
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: helloworld
Helloworld
diff --git a/hibernate/pom.xml b/hibernate/pom.xml
index 540a123c65..f9ea85b47e 100644
--- a/hibernate/pom.xml
+++ b/hibernate/pom.xml
@@ -29,7 +29,7 @@
hibernate
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: hibernate
This project demonstrates how to use Hibernate 5
diff --git a/http-custom-mechanism/custom-module/pom.xml b/http-custom-mechanism/custom-module/pom.xml
index e68765dd05..43cab8ea08 100644
--- a/http-custom-mechanism/custom-module/pom.xml
+++ b/http-custom-mechanism/custom-module/pom.xml
@@ -30,7 +30,7 @@
http-custom-mechanism
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jar
Quickstart: http-custom-mechanism
This project demonstrates how to implement a custom HTTP authentication mechanism
diff --git a/http-custom-mechanism/pom.xml b/http-custom-mechanism/pom.xml
index a83fd687cf..199c26349e 100644
--- a/http-custom-mechanism/pom.xml
+++ b/http-custom-mechanism/pom.xml
@@ -30,7 +30,7 @@
http-custom-mechanism
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: http-custom-mechanism
This project demonstrates how to implement a custom HTTP authentication mechanism
diff --git a/http-custom-mechanism/webapp/pom.xml b/http-custom-mechanism/webapp/pom.xml
index 0ed701bf38..cde3f9ea49 100644
--- a/http-custom-mechanism/webapp/pom.xml
+++ b/http-custom-mechanism/webapp/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
http-custom-mechanism
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
http-custom-mechanism-webapp
diff --git a/jaxrs-client/pom.xml b/jaxrs-client/pom.xml
index 2b0263a120..60bacd9ffb 100644
--- a/jaxrs-client/pom.xml
+++ b/jaxrs-client/pom.xml
@@ -30,7 +30,7 @@
jaxrs-client
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: jaxrs-client
A JAX-RS Client API project
diff --git a/jaxrs-jwt/client/pom.xml b/jaxrs-jwt/client/pom.xml
index 254bf96a17..09b2811041 100644
--- a/jaxrs-jwt/client/pom.xml
+++ b/jaxrs-jwt/client/pom.xml
@@ -22,7 +22,7 @@
org.wildfly.quickstarts
jaxrs-jwt
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jaxrs-jwt-client
jar
diff --git a/jaxrs-jwt/pom.xml b/jaxrs-jwt/pom.xml
index cb752c7735..7cf658cedf 100644
--- a/jaxrs-jwt/pom.xml
+++ b/jaxrs-jwt/pom.xml
@@ -29,7 +29,7 @@
jaxrs-jwt
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: jaxrs-jwt
JWT authentication using Elytron
diff --git a/jaxrs-jwt/service/pom.xml b/jaxrs-jwt/service/pom.xml
index 444a064ad4..c99d712b9f 100644
--- a/jaxrs-jwt/service/pom.xml
+++ b/jaxrs-jwt/service/pom.xml
@@ -22,7 +22,7 @@
org.wildfly.quickstarts
jaxrs-jwt
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jaxrs-jwt-service
war
diff --git a/jaxws-ejb/client/pom.xml b/jaxws-ejb/client/pom.xml
index 52fcbc97cc..09f704be40 100644
--- a/jaxws-ejb/client/pom.xml
+++ b/jaxws-ejb/client/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
jaxws-ejb
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jaxws-ejb-client
jar
diff --git a/jaxws-ejb/pom.xml b/jaxws-ejb/pom.xml
index 1c9a58b7d1..6c73241a9e 100644
--- a/jaxws-ejb/pom.xml
+++ b/jaxws-ejb/pom.xml
@@ -29,7 +29,7 @@
jaxws-ejb
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: jaxws-ejb
This project is a working example of a JAX-WS web service EJB endpoint
diff --git a/jaxws-ejb/service/pom.xml b/jaxws-ejb/service/pom.xml
index 81160cca03..79c56b4a84 100644
--- a/jaxws-ejb/service/pom.xml
+++ b/jaxws-ejb/service/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
jaxws-ejb
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jaxws-ejb-service
war
diff --git a/jaxws-retail/client/pom.xml b/jaxws-retail/client/pom.xml
index 85b51d8540..c8cb4ff4bf 100644
--- a/jaxws-retail/client/pom.xml
+++ b/jaxws-retail/client/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
jaxws-retail
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jaxws-retail-client
jar
diff --git a/jaxws-retail/pom.xml b/jaxws-retail/pom.xml
index 0afae2a11b..268f2e034e 100644
--- a/jaxws-retail/pom.xml
+++ b/jaxws-retail/pom.xml
@@ -29,7 +29,7 @@
jaxws-retail
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: jaxws-retail
This project is a working example of a JAX-WS web service retail endpoint
diff --git a/jaxws-retail/service/pom.xml b/jaxws-retail/service/pom.xml
index fac66ede34..c3e5b547a3 100644
--- a/jaxws-retail/service/pom.xml
+++ b/jaxws-retail/service/pom.xml
@@ -22,7 +22,7 @@
org.wildfly.quickstarts
jaxws-retail
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
jaxws-retail-service
diff --git a/jsonp/pom.xml b/jsonp/pom.xml
index 24bc010584..fd888d4730 100644
--- a/jsonp/pom.xml
+++ b/jsonp/pom.xml
@@ -29,7 +29,7 @@
jsonp
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: jsonp
A starter Jakarta EE webapp project for use on JBoss EAP
diff --git a/jta-crash-rec/pom.xml b/jta-crash-rec/pom.xml
index 6da452b391..abe5fea41f 100644
--- a/jta-crash-rec/pom.xml
+++ b/jta-crash-rec/pom.xml
@@ -29,7 +29,7 @@
jta-crash-rec
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: jta-crash-rec
This project demonstrates JTA crash recovery
diff --git a/jts/application-component-1/pom.xml b/jts/application-component-1/pom.xml
index 77d7b7ab26..f875cb8a17 100644
--- a/jts/application-component-1/pom.xml
+++ b/jts/application-component-1/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
jts
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jts-application-component-1
war
diff --git a/jts/application-component-2/pom.xml b/jts/application-component-2/pom.xml
index 5e54cfc582..da36ef0be3 100644
--- a/jts/application-component-2/pom.xml
+++ b/jts/application-component-2/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
jts
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jts-application-component-2
Quickstart: jts - application-component-2
diff --git a/jts/pom.xml b/jts/pom.xml
index 7cb52d7400..9cf0e7f1ad 100644
--- a/jts/pom.xml
+++ b/jts/pom.xml
@@ -30,7 +30,7 @@
jts
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: jts
A project that demonstrates how to use CMT with JTS
diff --git a/kitchensink/pom.xml b/kitchensink/pom.xml
index 0d0a1e8f70..64a2e40e37 100644
--- a/kitchensink/pom.xml
+++ b/kitchensink/pom.xml
@@ -29,7 +29,7 @@
kitchensink
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: kitchensink
A starter Jakarta EE web application project for use in JBoss EAP
diff --git a/logging/pom.xml b/logging/pom.xml
index ead82af025..f1cc129406 100644
--- a/logging/pom.xml
+++ b/logging/pom.xml
@@ -29,7 +29,7 @@
jboss-logging
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: logging
This project demonstrates logging in JBoss EAP
diff --git a/mail/pom.xml b/mail/pom.xml
index 0eb7280a27..22b3898021 100644
--- a/mail/pom.xml
+++ b/mail/pom.xml
@@ -30,7 +30,7 @@
mail
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: mail
This project demonstrates how to send mail
diff --git a/messaging-clustering-singleton/pom.xml b/messaging-clustering-singleton/pom.xml
index b15be758b9..7580166ec3 100644
--- a/messaging-clustering-singleton/pom.xml
+++ b/messaging-clustering-singleton/pom.xml
@@ -29,7 +29,7 @@
messaging-clustering-singleton
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: messaging-clustering-singleton
This project demonstrates a hello world Message-Driven Bean with Servlet 3.0 as client
diff --git a/microprofile-config/pom.xml b/microprofile-config/pom.xml
index 5f7dee9ff9..6866978bf2 100644
--- a/microprofile-config/pom.xml
+++ b/microprofile-config/pom.xml
@@ -13,7 +13,7 @@
microprofile-config
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-config
diff --git a/microprofile-fault-tolerance/pom.xml b/microprofile-fault-tolerance/pom.xml
index 6d10e01a9f..ea5ed7d29d 100644
--- a/microprofile-fault-tolerance/pom.xml
+++ b/microprofile-fault-tolerance/pom.xml
@@ -30,7 +30,7 @@
microprofile-fault-tolerance
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-fault-tolerance
diff --git a/microprofile-health/pom.xml b/microprofile-health/pom.xml
index 7f1e746daf..a00d95fff7 100644
--- a/microprofile-health/pom.xml
+++ b/microprofile-health/pom.xml
@@ -13,7 +13,7 @@
microprofile-health
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-health
diff --git a/microprofile-jwt/pom.xml b/microprofile-jwt/pom.xml
index b1fc17b52a..a753058ac1 100644
--- a/microprofile-jwt/pom.xml
+++ b/microprofile-jwt/pom.xml
@@ -29,7 +29,7 @@
microprofile-jwt
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-jwt
Example project making use of MicroProfile JWT
diff --git a/microprofile-metrics/pom.xml b/microprofile-metrics/pom.xml
index 6b62fb3145..eb87450bfa 100644
--- a/microprofile-metrics/pom.xml
+++ b/microprofile-metrics/pom.xml
@@ -13,7 +13,7 @@
microprofile-metrics
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-metrics
diff --git a/microprofile-openapi/pom.xml b/microprofile-openapi/pom.xml
index 8eea7b5408..107c764d55 100644
--- a/microprofile-openapi/pom.xml
+++ b/microprofile-openapi/pom.xml
@@ -14,7 +14,7 @@
microprofile-openapi
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-openapi
diff --git a/microprofile-opentracing/pom.xml b/microprofile-opentracing/pom.xml
index 4b88256184..5129fcba58 100644
--- a/microprofile-opentracing/pom.xml
+++ b/microprofile-opentracing/pom.xml
@@ -13,7 +13,7 @@
microprofile-opentracing
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-opentracing
diff --git a/microprofile-reactive-messaging-kafka/pom.xml b/microprofile-reactive-messaging-kafka/pom.xml
index e09ef394fe..67177f328d 100644
--- a/microprofile-reactive-messaging-kafka/pom.xml
+++ b/microprofile-reactive-messaging-kafka/pom.xml
@@ -29,7 +29,7 @@
microprofile-reactive-messaging-kafka
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: microprofile-reactive-messaging-kafka
diff --git a/microprofile-rest-client/country-client/pom.xml b/microprofile-rest-client/country-client/pom.xml
index 8347009fd9..92393d46a9 100644
--- a/microprofile-rest-client/country-client/pom.xml
+++ b/microprofile-rest-client/country-client/pom.xml
@@ -9,7 +9,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
4.0.0
diff --git a/microprofile-rest-client/country-server/pom.xml b/microprofile-rest-client/country-server/pom.xml
index f389b06adf..f3648506fc 100644
--- a/microprofile-rest-client/country-server/pom.xml
+++ b/microprofile-rest-client/country-server/pom.xml
@@ -9,7 +9,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
4.0.0
diff --git a/microprofile-rest-client/pom.xml b/microprofile-rest-client/pom.xml
index cf071de797..9797d8b553 100644
--- a/microprofile-rest-client/pom.xml
+++ b/microprofile-rest-client/pom.xml
@@ -28,7 +28,7 @@
microprofile-rest-client
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: microprofile-rest-client
diff --git a/numberguess/pom.xml b/numberguess/pom.xml
index a495fc1cdf..4c97273ebf 100644
--- a/numberguess/pom.xml
+++ b/numberguess/pom.xml
@@ -29,7 +29,7 @@
numberguess
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: numberguess
The numberguess project demonstrates the use of CDI and JSF in JBoss EAP
diff --git a/pom.xml b/pom.xml
index 9362eb090c..10003ee2f1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
diff --git a/security-domain-to-domain/ear/pom.xml b/security-domain-to-domain/ear/pom.xml
index 84378b2086..e35c78c913 100644
--- a/security-domain-to-domain/ear/pom.xml
+++ b/security-domain-to-domain/ear/pom.xml
@@ -26,7 +26,7 @@
org.wildfly.quickstarts
security-domain-to-domain
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
security-domain-to-domain-ear
ear
diff --git a/security-domain-to-domain/ejb/pom.xml b/security-domain-to-domain/ejb/pom.xml
index 49b88a55f7..9b0ae52dde 100644
--- a/security-domain-to-domain/ejb/pom.xml
+++ b/security-domain-to-domain/ejb/pom.xml
@@ -26,7 +26,7 @@
org.wildfly.quickstarts
security-domain-to-domain
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
security-domain-to-domain-ejb
Quickstart: security-domain-to-domain - ejb
diff --git a/security-domain-to-domain/pom.xml b/security-domain-to-domain/pom.xml
index 34fd87c2d8..6e7fcd00d0 100644
--- a/security-domain-to-domain/pom.xml
+++ b/security-domain-to-domain/pom.xml
@@ -30,7 +30,7 @@
security-domain-to-domain
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: security-domain-to-domain
This project demonstrates identity propagation between different security domains
diff --git a/security-domain-to-domain/web/pom.xml b/security-domain-to-domain/web/pom.xml
index fdeebc31c2..f2474a2a67 100644
--- a/security-domain-to-domain/web/pom.xml
+++ b/security-domain-to-domain/web/pom.xml
@@ -26,7 +26,7 @@
org.wildfly.quickstarts
security-domain-to-domain
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
../pom.xml
security-domain-to-domain-web
diff --git a/servlet-async/pom.xml b/servlet-async/pom.xml
index 6b8741de22..fc98f235f6 100644
--- a/servlet-async/pom.xml
+++ b/servlet-async/pom.xml
@@ -30,7 +30,7 @@
servlet-async
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: servlet-async
This project demonstrates an asynchronous Servlet
diff --git a/servlet-filterlistener/pom.xml b/servlet-filterlistener/pom.xml
index 9fede59576..f4a147e790 100644
--- a/servlet-filterlistener/pom.xml
+++ b/servlet-filterlistener/pom.xml
@@ -30,7 +30,7 @@
servlet-filterlistener
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: servlet-filterlistener
This project demonstrates a Servlet Filter and Listener
diff --git a/servlet-security/pom.xml b/servlet-security/pom.xml
index 5aaf95acee..944b118ac7 100644
--- a/servlet-security/pom.xml
+++ b/servlet-security/pom.xml
@@ -30,7 +30,7 @@
servlet-security
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: servlet-security
This project demonstrates servlet security in JBoss EAP
diff --git a/shared-doc/attributes.adoc b/shared-doc/attributes.adoc
index 5e4306f2dd..fc77313213 100644
--- a/shared-doc/attributes.adoc
+++ b/shared-doc/attributes.adoc
@@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPCDRelease,EAPXPRelease[]
:productImageVersion: 27.0
:githubRepoUrl: https://github.com/wildfly/quickstart/
:githubRepoCodeUrl: https://github.com/wildfly/quickstart.git
-:WildFlyQuickStartRepoTag: 27.0.0.Beta1
+:WildFlyQuickStartRepoTag: 27.0.0.Final
:DocInfoProductName: Red Hat JBoss Enterprise Application Platform
:DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform
// Do not update the following until after the 7.4 docs are published!
diff --git a/shopping-cart/client/pom.xml b/shopping-cart/client/pom.xml
index e1d3cb4071..1411d847fa 100644
--- a/shopping-cart/client/pom.xml
+++ b/shopping-cart/client/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
shopping-cart
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
shopping-cart-client
jar
diff --git a/shopping-cart/pom.xml b/shopping-cart/pom.xml
index 061c2bb3d4..4454236448 100644
--- a/shopping-cart/pom.xml
+++ b/shopping-cart/pom.xml
@@ -30,7 +30,7 @@
shopping-cart
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
pom
Quickstart: shopping-cart
This project demonstrates a shopping cart that uses a Stateful Session Bean
diff --git a/shopping-cart/server/pom.xml b/shopping-cart/server/pom.xml
index 15119e82a4..76a1e72b58 100644
--- a/shopping-cart/server/pom.xml
+++ b/shopping-cart/server/pom.xml
@@ -21,7 +21,7 @@
org.wildfly.quickstarts
shopping-cart
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
shopping-cart-server
ejb
diff --git a/spring-resteasy/pom.xml b/spring-resteasy/pom.xml
index 07401f0752..566abfec46 100644
--- a/spring-resteasy/pom.xml
+++ b/spring-resteasy/pom.xml
@@ -30,7 +30,7 @@
spring-resteasy
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: spring-resteasy
This project demonstrates Spring with a JAX-RS RestEasy client
diff --git a/tasks-jsf/pom.xml b/tasks-jsf/pom.xml
index bd2dc8b2e8..e745789998 100644
--- a/tasks-jsf/pom.xml
+++ b/tasks-jsf/pom.xml
@@ -30,7 +30,7 @@
tasks-jsf
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: tasks-jsf
This project demonstrates how to use JPA persistence to manage tasks with JSF as view layer
diff --git a/template/pom.xml b/template/pom.xml
index 301a52de70..dba7726bb8 100644
--- a/template/pom.xml
+++ b/template/pom.xml
@@ -20,7 +20,7 @@
org.wildfly.quickstarts
QUICKSTART_NAME
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: QUICKSTART_NAME - OPTIONAL_SUBFOLDER_NAME
A short description of this quickstart
diff --git a/todo-backend/pom.xml b/todo-backend/pom.xml
index 0127d8a973..ddda36d7ef 100644
--- a/todo-backend/pom.xml
+++ b/todo-backend/pom.xml
@@ -30,7 +30,7 @@
todo-backend
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: Todo backend
This project demonstrates how to implement a Todo-Backend application to manage ToDos
diff --git a/websocket-endpoint/pom.xml b/websocket-endpoint/pom.xml
index a74014ee0b..afe95fac95 100644
--- a/websocket-endpoint/pom.xml
+++ b/websocket-endpoint/pom.xml
@@ -30,7 +30,7 @@
websocket-endpoint
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: websocket-endpoint
This project demonstrates how to use a WebSocket Endppoint
diff --git a/websocket-hello/pom.xml b/websocket-hello/pom.xml
index 8b45032de0..d9203af86a 100644
--- a/websocket-hello/pom.xml
+++ b/websocket-hello/pom.xml
@@ -30,7 +30,7 @@
websocket-hello
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
war
Quickstart: websocket-hello
This project demonstrates a simple Hello WebSocket application
diff --git a/wsba-coordinator-completion-simple/pom.xml b/wsba-coordinator-completion-simple/pom.xml
index e1bd0239a1..bf30a0d4c7 100644
--- a/wsba-coordinator-completion-simple/pom.xml
+++ b/wsba-coordinator-completion-simple/pom.xml
@@ -30,7 +30,7 @@
wsba-coordinator-completion-simple
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jar
Quickstart: wsba-coordinator-completion-simple
This project demonstrates WS-BA with Coordinator Driven Completion
diff --git a/wsba-participant-completion-simple/pom.xml b/wsba-participant-completion-simple/pom.xml
index 45c7b7e3ad..11b5c386fb 100644
--- a/wsba-participant-completion-simple/pom.xml
+++ b/wsba-participant-completion-simple/pom.xml
@@ -30,7 +30,7 @@
wsba-participant-completion-simple
- 27.0.0.Final-SNAPSHOT
+ 27.0.0.Final
jar
Quickstart: wsba-participant-completion-simple
This project demonstrates WS-BA with Participant Driven Completion