diff --git a/CHANGELOG.md b/CHANGELOG.md
index cc86bf6820f..575d439dca2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,12 +9,41 @@ For Helidon 2.x releases please see [Helidon 2.x CHANGELOG.md](https://github.co
For Helidon 1.x releases please see [Helidon 1.x CHANGELOG.md](https://github.com/oracle/helidon/blob/helidon-1.x/CHANGELOG.md)
-## [3.1.3]
+## [3.2.0]
This is a bugfix release of Helidon and is recommended for all users of Helidon 3. Helidon 3 requires Java 17 or newer.
+This release upgrades SnakeYaml from 1.32 to 2.0. Because of incompatible API changes in SnakeYaml 2 it is possible your application might be impacted if you use SnakeYaml directly. While we reccomend you do the upgrade, if that is not possible you may force downgrade SnakeYaml to 1.32 and Helidon 3.2.0 will still work.
+
### CHANGES
+- Config: Escape the key when copying a config node [6304](https://github.com/helidon-io/helidon/pull/6304)
+- JMS: JNDI destination support [6301](https://github.com/helidon-io/helidon/pull/6301)
+- JPA: Minor JPA cleanups [6435](https://github.com/helidon-io/helidon/pull/6435)
+- JTA: Fixes erroneous closing behavior in JtaConnection.java [6321](https://github.com/helidon-io/helidon/pull/6321)
+- Logging: Remove FileHandler from logging.properties [6363](https://github.com/helidon-io/helidon/pull/6363)
+- Metrics: Change default exemplar behavior to conform to OpenMetrics spec; allow users to choose former non-standard behavior [6387](https://github.com/helidon-io/helidon/pull/6387)
+- MultiPart: Fix MultiPartDecoder lazy inner publisher subscription [6225](https://github.com/helidon-io/helidon/pull/6225)
+- MultiPart: WritableMultiPart create methods fixed [6390](https://github.com/helidon-io/helidon/pull/6390)
+- Native image: Dockerfile.native fixes. [6424](https://github.com/helidon-io/helidon/pull/6424)
+- Native image: Fix native-image build-time initialization [6426](https://github.com/helidon-io/helidon/pull/6426) [6438](https://github.com/helidon-io/helidon/pull/6438)
+- Security: OIDC original uri resolving leaving out query params [6342](https://github.com/helidon-io/helidon/pull/6342)
+- WebServer: Support for non-GET HTTP/2 upgrades [6383](https://github.com/helidon-io/helidon/pull/6383)
+- Build: Use https in pom.xml schemaLocation [6313](https://github.com/helidon-io/helidon/pull/6313) and others
+- Dependencies: Adapt to SnakeYAML 2.0 changes [5793](https://github.com/helidon-io/helidon/pull/5793)
+- Dependencies: Upgrade OCI SDK to 3.8.0 [6427](https://github.com/helidon-io/helidon/pull/6427)
+- Docs: Fix `{h1-prefix}` unreplaced token in SE metrics guide preamble [6409](https://github.com/helidon-io/helidon/pull/6409)
+- Docs: Remove claim that metrics are automatically propagated from the webserver to the webclient [6319](https://github.com/helidon-io/helidon/pull/6319)
+- Docs: TOC - #5828 [6270](https://github.com/helidon-io/helidon/pull/6270)
+- Docs: Toc tasks from #5828 [6146](https://github.com/helidon-io/helidon/pull/6146)
+- Docs: Typo in metrics guide 3.x [6271](https://github.com/helidon-io/helidon/pull/6271)
+- Docs: [3.x] Describe disabling config token replacement [6166](https://github.com/helidon-io/helidon/pull/6166)
+- Examples: Update mustache format in archetype files [6287](https://github.com/helidon-io/helidon/pull/6287)
+- Tests: Fix RC in JMS error test [6376](https://github.com/helidon-io/helidon/pull/6376)
+- Tests: Fix intermittent issue on OciMetricsSupportTest [6177](https://github.com/helidon-io/helidon/pull/6177)
+- Tests: JMS intermittent test fix [6393](https://github.com/helidon-io/helidon/pull/6393)
+- Tests: Use Hamcrest assertions instead of JUnit [6292](https://github.com/helidon-io/helidon/pull/6292) and others
+
## [3.1.2]
This is a bugfix release of Helidon and is recommended for all users of Helidon 3. Helidon 3 requires Java 17 or newer.
@@ -625,7 +654,7 @@ Notable changes:
- Examples: Update bare-mp archetype to use microprofile-core [3795](https://github.com/oracle/helidon/pull/3795)
-[3.1.3]: https://github.com/helidon-io/helidon/compare/3.1.2...3.1.3
+[3.2.0]: https://github.com/helidon-io/helidon/compare/3.1.2...3.2.0
[3.1.2]: https://github.com/helidon-io/helidon/compare/3.1.1...3.1.2
[3.1.1]: https://github.com/helidon-io/helidon/compare/3.1.0...3.1.1
[3.1.0]: https://github.com/helidon-io/helidon/compare/3.0.2...3.1.0
diff --git a/applications/mp/pom.xml b/applications/mp/pom.xml
index 9280818e12a..804fc61d02e 100644
--- a/applications/mp/pom.xml
+++ b/applications/mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-applications
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../parent/pom.xml
helidon-mp
diff --git a/applications/parent/pom.xml b/applications/parent/pom.xml
index fa51f48e94d..fbe87dcf490 100644
--- a/applications/parent/pom.xml
+++ b/applications/parent/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-applications-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
helidon-applications
diff --git a/applications/pom.xml b/applications/pom.xml
index a4f6d215e7f..598702e7062 100644
--- a/applications/pom.xml
+++ b/applications/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-dependencies
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../dependencies/pom.xml
io.helidon.applications
diff --git a/applications/se/pom.xml b/applications/se/pom.xml
index 118565423a1..64434f17a65 100644
--- a/applications/se/pom.xml
+++ b/applications/se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-applications
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../parent/pom.xml
helidon-se
diff --git a/archetypes/helidon/pom.xml b/archetypes/helidon/pom.xml
index 88159938210..bfc396c466e 100644
--- a/archetypes/helidon/pom.xml
+++ b/archetypes/helidon/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-archetype
helidon
diff --git a/archetypes/legacy/bare-mp/pom.xml b/archetypes/legacy/bare-mp/pom.xml
index b2b27a15424..c8ffe1c23a8 100644
--- a/archetypes/legacy/bare-mp/pom.xml
+++ b/archetypes/legacy/bare-mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-legacy-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-bare-mp
helidon-archetype
diff --git a/archetypes/legacy/bare-se/pom.xml b/archetypes/legacy/bare-se/pom.xml
index ec0408d8056..d0848bd1c41 100644
--- a/archetypes/legacy/bare-se/pom.xml
+++ b/archetypes/legacy/bare-se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-legacy-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-bare-se
helidon-archetype
diff --git a/archetypes/legacy/database-mp/pom.xml b/archetypes/legacy/database-mp/pom.xml
index 48b1c7e3ad3..c7884b6faf5 100644
--- a/archetypes/legacy/database-mp/pom.xml
+++ b/archetypes/legacy/database-mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-legacy-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-database-mp
helidon-archetype
diff --git a/archetypes/legacy/database-se/pom.xml b/archetypes/legacy/database-se/pom.xml
index a850845bdb5..b5ac72c1b9b 100644
--- a/archetypes/legacy/database-se/pom.xml
+++ b/archetypes/legacy/database-se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-legacy-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-database-se
helidon-archetype
diff --git a/archetypes/legacy/pom.xml b/archetypes/legacy/pom.xml
index 20d0633b9e1..106376435b8 100644
--- a/archetypes/legacy/pom.xml
+++ b/archetypes/legacy/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-archetypes-legacy-project
Helidon Legacy Archetypes
diff --git a/archetypes/legacy/quickstart-mp/pom.xml b/archetypes/legacy/quickstart-mp/pom.xml
index 28e70b1922b..eb70eaca027 100644
--- a/archetypes/legacy/quickstart-mp/pom.xml
+++ b/archetypes/legacy/quickstart-mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-legacy-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-quickstart-mp
helidon-archetype
diff --git a/archetypes/legacy/quickstart-se/pom.xml b/archetypes/legacy/quickstart-se/pom.xml
index b0f703e279d..506c55eb3ab 100644
--- a/archetypes/legacy/quickstart-se/pom.xml
+++ b/archetypes/legacy/quickstart-se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.archetypes
helidon-archetypes-legacy-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-quickstart-se
helidon-archetype
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index f30bd20a432..4fc93ede3ac 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.archetypes
helidon-archetypes-project
diff --git a/bom/pom.xml b/bom/pom.xml
index 54d43679bf3..fa13c7db7f8 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-parent
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../parent/pom.xml
io.helidon
@@ -32,7 +32,7 @@
Helidon BOM POM
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
diff --git a/bundles/config/pom.xml b/bundles/config/pom.xml
index bdf20529297..e1de6069a78 100644
--- a/bundles/config/pom.xml
+++ b/bundles/config/pom.xml
@@ -22,7 +22,7 @@
io.helidon.bundles
helidon-bundles-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-bundles-config
diff --git a/bundles/jersey/pom.xml b/bundles/jersey/pom.xml
index e9147108fd8..83b3759b3b6 100644
--- a/bundles/jersey/pom.xml
+++ b/bundles/jersey/pom.xml
@@ -22,7 +22,7 @@
io.helidon.bundles
helidon-bundles-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-bundles-jersey
diff --git a/bundles/pom.xml b/bundles/pom.xml
index 61a654063c1..047fb99de6c 100644
--- a/bundles/pom.xml
+++ b/bundles/pom.xml
@@ -22,7 +22,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
config
diff --git a/bundles/security/pom.xml b/bundles/security/pom.xml
index 7b615055cd4..882670f8eb1 100644
--- a/bundles/security/pom.xml
+++ b/bundles/security/pom.xml
@@ -22,7 +22,7 @@
io.helidon.bundles
helidon-bundles-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-bundles-security
diff --git a/bundles/webserver/pom.xml b/bundles/webserver/pom.xml
index 560cba2f263..0e65f44d39d 100644
--- a/bundles/webserver/pom.xml
+++ b/bundles/webserver/pom.xml
@@ -22,7 +22,7 @@
io.helidon.bundles
helidon-bundles-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-bundles-webserver
diff --git a/common/common/pom.xml b/common/common/pom.xml
index 22c48a6f500..7e17fc93f43 100644
--- a/common/common/pom.xml
+++ b/common/common/pom.xml
@@ -23,7 +23,7 @@
io.helidon.common
helidon-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-common
Helidon Common
diff --git a/common/configurable/pom.xml b/common/configurable/pom.xml
index 69600cf99fe..5e00ee43088 100644
--- a/common/configurable/pom.xml
+++ b/common/configurable/pom.xml
@@ -24,7 +24,7 @@
io.helidon.common
helidon-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Helidon Common Configurable
helidon-common-configurable
diff --git a/common/context/pom.xml b/common/context/pom.xml
index 3b5e93b7a1f..9a5692e9c54 100644
--- a/common/context/pom.xml
+++ b/common/context/pom.xml
@@ -22,7 +22,7 @@
io.helidon.common
helidon-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-common-context
Helidon Common Context
diff --git a/common/crypto/pom.xml b/common/crypto/pom.xml
index b493d4e05b6..f9147967b62 100644
--- a/common/crypto/pom.xml
+++ b/common/crypto/pom.xml
@@ -21,7 +21,7 @@
io.helidon.common
helidon-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/common/http/pom.xml b/common/http/pom.xml
index 29217bf09f0..88318e4c4ef 100644
--- a/common/http/pom.xml
+++ b/common/http/pom.xml
@@ -22,7 +22,7 @@
helidon-common-project
io.helidon.common
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
helidon-common-http
diff --git a/common/key-util/pom.xml b/common/key-util/pom.xml
index 13cc7694aba..c785fa0ae8d 100644
--- a/common/key-util/pom.xml
+++ b/common/key-util/pom.xml
@@ -24,7 +24,7 @@
io.helidon.common
helidon-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-common-key-util
Helidon Common Key Util
diff --git a/common/mapper/pom.xml b/common/mapper/pom.xml
index 1a338c8d989..2beed95eb04 100644
--- a/common/mapper/pom.xml
+++ b/common/mapper/pom.xml
@@ -21,7 +21,7 @@
helidon-common-project
io.helidon.common
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/common/media-type/pom.xml b/common/media-type/pom.xml
index 3fb6a372da3..a228ae548b4 100644
--- a/common/media-type/pom.xml
+++ b/common/media-type/pom.xml
@@ -21,7 +21,7 @@
io.helidon.common
helidon-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-common-media-type
diff --git a/common/pom.xml b/common/pom.xml
index 4bb367f6bdb..b91fef86b88 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.common
helidon-common-project
diff --git a/common/reactive/pom.xml b/common/reactive/pom.xml
index 672783e9acd..612c7305c03 100644
--- a/common/reactive/pom.xml
+++ b/common/reactive/pom.xml
@@ -23,7 +23,7 @@
io.helidon.common
helidon-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-common-reactive
Helidon Common Reactive
diff --git a/common/service-loader/pom.xml b/common/service-loader/pom.xml
index 19aecd93f06..16b708c15a5 100644
--- a/common/service-loader/pom.xml
+++ b/common/service-loader/pom.xml
@@ -21,7 +21,7 @@
helidon-common-project
io.helidon.common
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/config/config-mp/pom.xml b/config/config-mp/pom.xml
index ed3f8973979..88397f0b755 100644
--- a/config/config-mp/pom.xml
+++ b/config/config-mp/pom.xml
@@ -22,7 +22,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-mp
diff --git a/config/config/pom.xml b/config/config/pom.xml
index 54a285d7622..50efeb1dc85 100644
--- a/config/config/pom.xml
+++ b/config/config/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config
Helidon Config
diff --git a/config/encryption/pom.xml b/config/encryption/pom.xml
index 54e1fc16626..6c7c1230efc 100644
--- a/config/encryption/pom.xml
+++ b/config/encryption/pom.xml
@@ -23,7 +23,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
helidon-config-encryption
diff --git a/config/etcd/pom.xml b/config/etcd/pom.xml
index b92ea48ce2c..74792289d7a 100644
--- a/config/etcd/pom.xml
+++ b/config/etcd/pom.xml
@@ -23,7 +23,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-etcd
Helidon Config Etcd
diff --git a/config/git/pom.xml b/config/git/pom.xml
index f9cabcb34dc..86970accc86 100644
--- a/config/git/pom.xml
+++ b/config/git/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-git
Helidon Config Git
diff --git a/config/hocon-mp/pom.xml b/config/hocon-mp/pom.xml
index 25f454d5ca4..87ada24e506 100644
--- a/config/hocon-mp/pom.xml
+++ b/config/hocon-mp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-hocon-mp
Helidon Config HOCON MP
diff --git a/config/hocon/pom.xml b/config/hocon/pom.xml
index dcc5e2c7890..48054691c3a 100644
--- a/config/hocon/pom.xml
+++ b/config/hocon/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-hocon
Helidon Config HOCON
diff --git a/config/metadata-processor/pom.xml b/config/metadata-processor/pom.xml
index 95df61a7848..8e58a70dbcc 100644
--- a/config/metadata-processor/pom.xml
+++ b/config/metadata-processor/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-metadata-processor
Helidon Config Metadata Annotation Processor
diff --git a/config/metadata/pom.xml b/config/metadata/pom.xml
index ef1d788063b..5c4a30d9c99 100644
--- a/config/metadata/pom.xml
+++ b/config/metadata/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-metadata
Helidon Config Metadata
diff --git a/config/object-mapping/pom.xml b/config/object-mapping/pom.xml
index 9698e664eae..972da26ab6e 100644
--- a/config/object-mapping/pom.xml
+++ b/config/object-mapping/pom.xml
@@ -22,7 +22,7 @@
helidon-config-project
io.helidon.config
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/config/pom.xml b/config/pom.xml
index 100eae3021b..72d994cc311 100644
--- a/config/pom.xml
+++ b/config/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.config
helidon-config-project
diff --git a/config/test-infrastructure/pom.xml b/config/test-infrastructure/pom.xml
index aecd23f1d00..90ed083714c 100644
--- a/config/test-infrastructure/pom.xml
+++ b/config/test-infrastructure/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-test-infrastructure
Helidon Config Test Infrastructure
diff --git a/config/testing/pom.xml b/config/testing/pom.xml
index 7fbca0aa685..bca6970326b 100644
--- a/config/testing/pom.xml
+++ b/config/testing/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-testing
Helidon Config Testing
diff --git a/config/tests/integration-tests/pom.xml b/config/tests/integration-tests/pom.xml
index 69874a259ee..3d90b8dd410 100644
--- a/config/tests/integration-tests/pom.xml
+++ b/config/tests/integration-tests/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-integration-tests
Helidon Config Tests Integration
diff --git a/config/tests/module-mappers-1-base/pom.xml b/config/tests/module-mappers-1-base/pom.xml
index adc67708a84..d138971a016 100644
--- a/config/tests/module-mappers-1-base/pom.xml
+++ b/config/tests/module-mappers-1-base/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-module-mappers-1-base
Helidon Config Tests Mappers 1
diff --git a/config/tests/module-mappers-2-override/pom.xml b/config/tests/module-mappers-2-override/pom.xml
index 11f89af0851..f8afe5697aa 100644
--- a/config/tests/module-mappers-2-override/pom.xml
+++ b/config/tests/module-mappers-2-override/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-module-mappers-2-override
Helidon Config Tests Parser 2
diff --git a/config/tests/module-meta-source-1/pom.xml b/config/tests/module-meta-source-1/pom.xml
index 492ff32902d..785f097db5a 100644
--- a/config/tests/module-meta-source-1/pom.xml
+++ b/config/tests/module-meta-source-1/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-module-meta-source-1
Helidon Config Tests Meta Source 1
diff --git a/config/tests/module-meta-source-2/pom.xml b/config/tests/module-meta-source-2/pom.xml
index 1164e291550..76aa729cf8d 100644
--- a/config/tests/module-meta-source-2/pom.xml
+++ b/config/tests/module-meta-source-2/pom.xml
@@ -25,7 +25,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-module-meta-source-2
Helidon Config Tests Meta Source 2
diff --git a/config/tests/module-parsers-1-override/pom.xml b/config/tests/module-parsers-1-override/pom.xml
index b47f4042ac5..da5b66534d7 100644
--- a/config/tests/module-parsers-1-override/pom.xml
+++ b/config/tests/module-parsers-1-override/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-module-parsers-1-override
Helidon Config Tests Parser 1
diff --git a/config/tests/pom.xml b/config/tests/pom.xml
index b6a7e4d7b5c..3420281a730 100644
--- a/config/tests/pom.xml
+++ b/config/tests/pom.xml
@@ -23,7 +23,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.config.tests
helidon-config-tests-project
diff --git a/config/tests/test-bundle/pom.xml b/config/tests/test-bundle/pom.xml
index 3cf8eec431d..1dbb5243385 100644
--- a/config/tests/test-bundle/pom.xml
+++ b/config/tests/test-bundle/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-bundle
Helidon Config Tests Bundle
diff --git a/config/tests/test-default_config-1-properties/pom.xml b/config/tests/test-default_config-1-properties/pom.xml
index 0275b9e7715..ffde5ccb183 100644
--- a/config/tests/test-default_config-1-properties/pom.xml
+++ b/config/tests/test-default_config-1-properties/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-1-properties
Helidon Config Tests Default Config 1
diff --git a/config/tests/test-default_config-2-hocon-json/pom.xml b/config/tests/test-default_config-2-hocon-json/pom.xml
index 53bf16717e1..e24f27e2eb5 100644
--- a/config/tests/test-default_config-2-hocon-json/pom.xml
+++ b/config/tests/test-default_config-2-hocon-json/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-2-hocon-json
Helidon Config Tests Default Config 2
diff --git a/config/tests/test-default_config-3-hocon/pom.xml b/config/tests/test-default_config-3-hocon/pom.xml
index b26142ef78e..2d47c3eac73 100644
--- a/config/tests/test-default_config-3-hocon/pom.xml
+++ b/config/tests/test-default_config-3-hocon/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-3-hocon
Helidon Config Tests Default Config 3
diff --git a/config/tests/test-default_config-4-yaml/pom.xml b/config/tests/test-default_config-4-yaml/pom.xml
index ffd0b7d3d4e..be553c8fc91 100644
--- a/config/tests/test-default_config-4-yaml/pom.xml
+++ b/config/tests/test-default_config-4-yaml/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-4-yaml
Helidon Config Tests Default Config 4
diff --git a/config/tests/test-default_config-5-env_vars/pom.xml b/config/tests/test-default_config-5-env_vars/pom.xml
index d390a23ac89..069d38adad1 100644
--- a/config/tests/test-default_config-5-env_vars/pom.xml
+++ b/config/tests/test-default_config-5-env_vars/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-5-env_vars
Helidon Config Tests Default Config 5
diff --git a/config/tests/test-default_config-6-meta-properties/pom.xml b/config/tests/test-default_config-6-meta-properties/pom.xml
index af54c9dc082..f2d068267f9 100644
--- a/config/tests/test-default_config-6-meta-properties/pom.xml
+++ b/config/tests/test-default_config-6-meta-properties/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-6-meta-properties
Helidon Config Tests Default Config 6
diff --git a/config/tests/test-default_config-7-meta-hocon-json/pom.xml b/config/tests/test-default_config-7-meta-hocon-json/pom.xml
index b51270300c2..0e80f2a4fcc 100644
--- a/config/tests/test-default_config-7-meta-hocon-json/pom.xml
+++ b/config/tests/test-default_config-7-meta-hocon-json/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-7-meta-hocon-json
Helidon Config Tests Default Config 7
diff --git a/config/tests/test-default_config-8-meta-hocon/pom.xml b/config/tests/test-default_config-8-meta-hocon/pom.xml
index 9ecca5ac965..f96ef8fdc42 100644
--- a/config/tests/test-default_config-8-meta-hocon/pom.xml
+++ b/config/tests/test-default_config-8-meta-hocon/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-8-meta-hocon
Helidon Config Tests Default Config 8
diff --git a/config/tests/test-default_config-9-meta-yaml/pom.xml b/config/tests/test-default_config-9-meta-yaml/pom.xml
index 385ad2b2c49..3b87135fac5 100644
--- a/config/tests/test-default_config-9-meta-yaml/pom.xml
+++ b/config/tests/test-default_config-9-meta-yaml/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-default_config-9-meta-yaml
Helidon Config Tests Default Config 9
diff --git a/config/tests/test-mappers-1-common/pom.xml b/config/tests/test-mappers-1-common/pom.xml
index dcbbd096758..24620bf15c1 100644
--- a/config/tests/test-mappers-1-common/pom.xml
+++ b/config/tests/test-mappers-1-common/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-mappers-1-common
Helidon Config Tests Mappers Common 1
diff --git a/config/tests/test-mappers-2-complex/pom.xml b/config/tests/test-mappers-2-complex/pom.xml
index d4aa5b78fc2..4cbd19bdcfd 100644
--- a/config/tests/test-mappers-2-complex/pom.xml
+++ b/config/tests/test-mappers-2-complex/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-mappers-2-complex
Helidon Config Tests Parsers 2
diff --git a/config/tests/test-meta-source/pom.xml b/config/tests/test-meta-source/pom.xml
index 6affc1123bd..1c67bb031be 100644
--- a/config/tests/test-meta-source/pom.xml
+++ b/config/tests/test-meta-source/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-meta-source
Helidon Config Tests Meta Source
diff --git a/config/tests/test-parsers-1-complex/pom.xml b/config/tests/test-parsers-1-complex/pom.xml
index 093dd0ca6d6..8278ab60a46 100644
--- a/config/tests/test-parsers-1-complex/pom.xml
+++ b/config/tests/test-parsers-1-complex/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config.tests
helidon-config-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-tests-test-parsers-1-complex
Helidon Config Tests Parsers 1
diff --git a/config/yaml-mp/pom.xml b/config/yaml-mp/pom.xml
index c5f5e86d851..db4a3e023db 100644
--- a/config/yaml-mp/pom.xml
+++ b/config/yaml-mp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-yaml-mp
Helidon Config YAML MP
diff --git a/config/yaml/pom.xml b/config/yaml/pom.xml
index 7dd00c70868..d81f1bd5b07 100644
--- a/config/yaml/pom.xml
+++ b/config/yaml/pom.xml
@@ -24,7 +24,7 @@
io.helidon.config
helidon-config-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-config-yaml
Helidon Config YAML
diff --git a/dbclient/common/pom.xml b/dbclient/common/pom.xml
index ff28ac0167b..cb475166a0f 100644
--- a/dbclient/common/pom.xml
+++ b/dbclient/common/pom.xml
@@ -21,7 +21,7 @@
helidon-dbclient-project
io.helidon.dbclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/dbclient/dbclient/pom.xml b/dbclient/dbclient/pom.xml
index 8b06e03c908..51711a38053 100644
--- a/dbclient/dbclient/pom.xml
+++ b/dbclient/dbclient/pom.xml
@@ -22,7 +22,7 @@
helidon-dbclient-project
io.helidon.dbclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-dbclient
diff --git a/dbclient/health/pom.xml b/dbclient/health/pom.xml
index 4498afbd63b..cfcbc7fc8b7 100644
--- a/dbclient/health/pom.xml
+++ b/dbclient/health/pom.xml
@@ -22,7 +22,7 @@
io.helidon.dbclient
helidon-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-dbclient-health
diff --git a/dbclient/jdbc/pom.xml b/dbclient/jdbc/pom.xml
index 3f53281c4c2..a7c0cc847eb 100644
--- a/dbclient/jdbc/pom.xml
+++ b/dbclient/jdbc/pom.xml
@@ -22,7 +22,7 @@
helidon-dbclient-project
io.helidon.dbclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-dbclient-jdbc
diff --git a/dbclient/jsonp/pom.xml b/dbclient/jsonp/pom.xml
index cf83f93ced0..109fbb9d008 100644
--- a/dbclient/jsonp/pom.xml
+++ b/dbclient/jsonp/pom.xml
@@ -21,7 +21,7 @@
helidon-dbclient-project
io.helidon.dbclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/dbclient/metrics-jdbc/pom.xml b/dbclient/metrics-jdbc/pom.xml
index 698076f609c..37582a6791c 100644
--- a/dbclient/metrics-jdbc/pom.xml
+++ b/dbclient/metrics-jdbc/pom.xml
@@ -22,7 +22,7 @@
io.helidon.dbclient
helidon-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-dbclient-metrics-jdbc
diff --git a/dbclient/metrics/pom.xml b/dbclient/metrics/pom.xml
index b2cda2ab464..27185cff046 100644
--- a/dbclient/metrics/pom.xml
+++ b/dbclient/metrics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.dbclient
helidon-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-dbclient-metrics
diff --git a/dbclient/mongodb/pom.xml b/dbclient/mongodb/pom.xml
index b31c2866b09..ae12e30c46c 100644
--- a/dbclient/mongodb/pom.xml
+++ b/dbclient/mongodb/pom.xml
@@ -21,7 +21,7 @@
helidon-dbclient-project
io.helidon.dbclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/dbclient/pom.xml b/dbclient/pom.xml
index a5992547796..c5be40ebbbc 100644
--- a/dbclient/pom.xml
+++ b/dbclient/pom.xml
@@ -22,7 +22,7 @@
helidon-project
io.helidon
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/dbclient/tracing/pom.xml b/dbclient/tracing/pom.xml
index 5aa584a39a5..6fc1eea148f 100644
--- a/dbclient/tracing/pom.xml
+++ b/dbclient/tracing/pom.xml
@@ -22,7 +22,7 @@
io.helidon.dbclient
helidon-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-dbclient-tracing
diff --git a/dependencies/pom.xml b/dependencies/pom.xml
index 4ae491876d2..670f8cd04d0 100644
--- a/dependencies/pom.xml
+++ b/dependencies/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-bom
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../bom/pom.xml
helidon-dependencies
diff --git a/docs/includes/attributes.adoc b/docs/includes/attributes.adoc
index 17700cf4ec9..4516676ce48 100644
--- a/docs/includes/attributes.adoc
+++ b/docs/includes/attributes.adoc
@@ -23,7 +23,7 @@ ifndef::attributes-included[]
// functional attributes
:imagesdir: {rootdir}/images
-:helidon-version: 3.1.3-SNAPSHOT
+:helidon-version: 3.2.1-SNAPSHOT
:helidon-version-is-release: false
ifeval::["{helidon-version-is-release}" != "true"]
diff --git a/etc/scripts/github-release.sh b/etc/scripts/github-release.sh
index e563dd8ba59..66af2354ce4 100755
--- a/etc/scripts/github-release.sh
+++ b/etc/scripts/github-release.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
+# Copyright (c) 2020, 2023 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -85,7 +85,7 @@ fi
readonly GITHUB_API_URL="https://api.github.com"
readonly MEDIA_TYPE="application/vnd.github.v3+json"
-readonly GITHUB_OWNER="oracle"
+readonly GITHUB_OWNER="helidon-io"
readonly REPO="helidon"
BODY=$(cat ${CHANGELOG} | awk '{printf "%s\\n", $0;}' | sed -e 's/"/\\"/g')
diff --git a/examples/config/basics/pom.xml b/examples/config/basics/pom.xml
index bfdbb45cfd0..6b9196a5c8d 100644
--- a/examples/config/basics/pom.xml
+++ b/examples/config/basics/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/config/changes/pom.xml b/examples/config/changes/pom.xml
index 7637a90a847..1f7559757fb 100644
--- a/examples/config/changes/pom.xml
+++ b/examples/config/changes/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/config/git/pom.xml b/examples/config/git/pom.xml
index 1cfeedddbff..23a06398a0e 100644
--- a/examples/config/git/pom.xml
+++ b/examples/config/git/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/config/mapping/pom.xml b/examples/config/mapping/pom.xml
index 68e9bd62338..01de3085b43 100644
--- a/examples/config/mapping/pom.xml
+++ b/examples/config/mapping/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/config/metadata/pom.xml b/examples/config/metadata/pom.xml
index e618e1c3eee..a98c360a646 100644
--- a/examples/config/metadata/pom.xml
+++ b/examples/config/metadata/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/config/overrides/pom.xml b/examples/config/overrides/pom.xml
index 65cf6b10bc2..a055f6ebd01 100644
--- a/examples/config/overrides/pom.xml
+++ b/examples/config/overrides/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/config/pom.xml b/examples/config/pom.xml
index b52bd6ba5a9..4f0167d7023 100644
--- a/examples/config/pom.xml
+++ b/examples/config/pom.xml
@@ -23,7 +23,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.config
helidon-examples-config-project
diff --git a/examples/config/profiles/pom.xml b/examples/config/profiles/pom.xml
index ba55bcf49a8..2ecc9e337ac 100644
--- a/examples/config/profiles/pom.xml
+++ b/examples/config/profiles/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/config/sources/pom.xml b/examples/config/sources/pom.xml
index 4a80e564d15..b4bba5d79e9 100644
--- a/examples/config/sources/pom.xml
+++ b/examples/config/sources/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.config
diff --git a/examples/cors/pom.xml b/examples/cors/pom.xml
index c036bb114d7..0f7876ac5bd 100644
--- a/examples/cors/pom.xml
+++ b/examples/cors/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../applications/se/pom.xml
io.helidon.examples
diff --git a/examples/dbclient/common/pom.xml b/examples/dbclient/common/pom.xml
index edb81e70be1..1c66dbe3bb8 100644
--- a/examples/dbclient/common/pom.xml
+++ b/examples/dbclient/common/pom.xml
@@ -22,7 +22,7 @@
io.helidon.examples.dbclient
helidon-examples-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-examples-dbclient-common
diff --git a/examples/dbclient/jdbc/pom.xml b/examples/dbclient/jdbc/pom.xml
index 652eae30b6f..6b326462d6e 100644
--- a/examples/dbclient/jdbc/pom.xml
+++ b/examples/dbclient/jdbc/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
diff --git a/examples/dbclient/mongodb/pom.xml b/examples/dbclient/mongodb/pom.xml
index 2f9a04a19d5..b654a35508b 100644
--- a/examples/dbclient/mongodb/pom.xml
+++ b/examples/dbclient/mongodb/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
diff --git a/examples/dbclient/pokemons/pom.xml b/examples/dbclient/pokemons/pom.xml
index 17487671ca5..a96f3302342 100644
--- a/examples/dbclient/pokemons/pom.xml
+++ b/examples/dbclient/pokemons/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
diff --git a/examples/dbclient/pom.xml b/examples/dbclient/pom.xml
index 0abaa450279..d1996629fdb 100644
--- a/examples/dbclient/pom.xml
+++ b/examples/dbclient/pom.xml
@@ -22,7 +22,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/examples/employee-app/pom.xml b/examples/employee-app/pom.xml
index f9663c79df0..5192eec9d8d 100644
--- a/examples/employee-app/pom.xml
+++ b/examples/employee-app/pom.xml
@@ -25,7 +25,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../applications/se/pom.xml
io.helidon.examples.employee
diff --git a/examples/graphql/basics/pom.xml b/examples/graphql/basics/pom.xml
index 89d6bf14c1c..ef070cfb2bd 100644
--- a/examples/graphql/basics/pom.xml
+++ b/examples/graphql/basics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.graphql
diff --git a/examples/graphql/pom.xml b/examples/graphql/pom.xml
index 6b9f0663588..ca0e4486178 100644
--- a/examples/graphql/pom.xml
+++ b/examples/graphql/pom.xml
@@ -22,7 +22,7 @@
helidon-examples-project
io.helidon.examples
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.graphql
helidon-examples-graphql-project
diff --git a/examples/grpc/basics/pom.xml b/examples/grpc/basics/pom.xml
index f43b22eead0..d89744f071e 100644
--- a/examples/grpc/basics/pom.xml
+++ b/examples/grpc/basics/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/grpc/client-standalone/pom.xml b/examples/grpc/client-standalone/pom.xml
index e40602725bb..64385b4ce13 100644
--- a/examples/grpc/client-standalone/pom.xml
+++ b/examples/grpc/client-standalone/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/grpc/common/pom.xml b/examples/grpc/common/pom.xml
index 3ccef9ed181..1db09791a14 100644
--- a/examples/grpc/common/pom.xml
+++ b/examples/grpc/common/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/grpc/metrics/pom.xml b/examples/grpc/metrics/pom.xml
index e37dbc8ff14..2ebc40d652c 100644
--- a/examples/grpc/metrics/pom.xml
+++ b/examples/grpc/metrics/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/grpc/microprofile/basic-client/pom.xml b/examples/grpc/microprofile/basic-client/pom.xml
index 2676f491edd..62fa63aad6d 100644
--- a/examples/grpc/microprofile/basic-client/pom.xml
+++ b/examples/grpc/microprofile/basic-client/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
helidon-examples-grpc-microprofile-client
diff --git a/examples/grpc/microprofile/basic-server-implicit/pom.xml b/examples/grpc/microprofile/basic-server-implicit/pom.xml
index 7d2a86fd5fd..6d7b232b289 100644
--- a/examples/grpc/microprofile/basic-server-implicit/pom.xml
+++ b/examples/grpc/microprofile/basic-server-implicit/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
helidon-examples-grpc-microprofile-basic-implicit
diff --git a/examples/grpc/microprofile/metrics/pom.xml b/examples/grpc/microprofile/metrics/pom.xml
index 63c7ef05426..53606bca417 100644
--- a/examples/grpc/microprofile/metrics/pom.xml
+++ b/examples/grpc/microprofile/metrics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
helidon-examples-grpc-microprofile-metrics
diff --git a/examples/grpc/microprofile/pom.xml b/examples/grpc/microprofile/pom.xml
index 77abb2453ae..4d4e1d71828 100644
--- a/examples/grpc/microprofile/pom.xml
+++ b/examples/grpc/microprofile/pom.xml
@@ -22,7 +22,7 @@
io.helidon.examples.grpc
helidon-examples-grpc-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.examples.grpc.microprofile
diff --git a/examples/grpc/opentracing/pom.xml b/examples/grpc/opentracing/pom.xml
index 1090d267f70..8647cb48e73 100644
--- a/examples/grpc/opentracing/pom.xml
+++ b/examples/grpc/opentracing/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/grpc/pom.xml b/examples/grpc/pom.xml
index 31b41d7cb9e..ea0f000360a 100644
--- a/examples/grpc/pom.xml
+++ b/examples/grpc/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.grpc
helidon-examples-grpc-project
diff --git a/examples/grpc/security-abac/pom.xml b/examples/grpc/security-abac/pom.xml
index 0193c0081da..c4c71977f73 100644
--- a/examples/grpc/security-abac/pom.xml
+++ b/examples/grpc/security-abac/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/grpc/security-outbound/pom.xml b/examples/grpc/security-outbound/pom.xml
index ca5acef9467..341bc24d11e 100644
--- a/examples/grpc/security-outbound/pom.xml
+++ b/examples/grpc/security-outbound/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/grpc/security/pom.xml b/examples/grpc/security/pom.xml
index 2bd39e2622a..30e55b35a89 100644
--- a/examples/grpc/security/pom.xml
+++ b/examples/grpc/security/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.grpc
diff --git a/examples/health/basics/pom.xml b/examples/health/basics/pom.xml
index 53054250586..b3b94fbe647 100644
--- a/examples/health/basics/pom.xml
+++ b/examples/health/basics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.health
diff --git a/examples/health/pom.xml b/examples/health/pom.xml
index f193ff98413..6d6deb2b699 100644
--- a/examples/health/pom.xml
+++ b/examples/health/pom.xml
@@ -22,7 +22,7 @@
helidon-examples-project
io.helidon.examples
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.health
helidon-examples-health-project
diff --git a/examples/integrations/cdi/datasource-hikaricp-h2/pom.xml b/examples/integrations/cdi/datasource-hikaricp-h2/pom.xml
index 64f743a3dbe..c6406a5089d 100644
--- a/examples/integrations/cdi/datasource-hikaricp-h2/pom.xml
+++ b/examples/integrations/cdi/datasource-hikaricp-h2/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.examples.integrations.cdi
diff --git a/examples/integrations/cdi/datasource-hikaricp-mysql/pom.xml b/examples/integrations/cdi/datasource-hikaricp-mysql/pom.xml
index e20f47fc4e5..9e07965128b 100644
--- a/examples/integrations/cdi/datasource-hikaricp-mysql/pom.xml
+++ b/examples/integrations/cdi/datasource-hikaricp-mysql/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.examples.integrations.cdi
diff --git a/examples/integrations/cdi/datasource-hikaricp/pom.xml b/examples/integrations/cdi/datasource-hikaricp/pom.xml
index ad653cd968d..d6519caf209 100644
--- a/examples/integrations/cdi/datasource-hikaricp/pom.xml
+++ b/examples/integrations/cdi/datasource-hikaricp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.examples.integrations.cdi
diff --git a/examples/integrations/cdi/jedis/pom.xml b/examples/integrations/cdi/jedis/pom.xml
index 3cf44e75f5e..d31856ce70d 100644
--- a/examples/integrations/cdi/jedis/pom.xml
+++ b/examples/integrations/cdi/jedis/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.examples.integrations.cdi
diff --git a/examples/integrations/cdi/jpa/pom.xml b/examples/integrations/cdi/jpa/pom.xml
index 668a5527e32..8bd648edbf5 100644
--- a/examples/integrations/cdi/jpa/pom.xml
+++ b/examples/integrations/cdi/jpa/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.examples.integrations.cdi
diff --git a/examples/integrations/cdi/pokemons/pom.xml b/examples/integrations/cdi/pokemons/pom.xml
index 647a6a6e7d4..684273aa276 100644
--- a/examples/integrations/cdi/pokemons/pom.xml
+++ b/examples/integrations/cdi/pokemons/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.examples.integrations.cdi
diff --git a/examples/integrations/cdi/pom.xml b/examples/integrations/cdi/pom.xml
index c3f069012f3..afc390b5f7a 100644
--- a/examples/integrations/cdi/pom.xml
+++ b/examples/integrations/cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples.integrations
helidon-examples-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.integrations.cdi
helidon-examples-integrations-cdi-project
diff --git a/examples/integrations/micrometer/mp/pom.xml b/examples/integrations/micrometer/mp/pom.xml
index 43e1e79c452..16cb170ee11 100644
--- a/examples/integrations/micrometer/mp/pom.xml
+++ b/examples/integrations/micrometer/mp/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
4.0.0
diff --git a/examples/integrations/micrometer/pom.xml b/examples/integrations/micrometer/pom.xml
index 7e4157ff9bf..44a908b249f 100644
--- a/examples/integrations/micrometer/pom.xml
+++ b/examples/integrations/micrometer/pom.xml
@@ -22,7 +22,7 @@
io.helidon.examples.integrations
helidon-examples-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-examples-micrometer-project
diff --git a/examples/integrations/micrometer/se/pom.xml b/examples/integrations/micrometer/se/pom.xml
index 075be280b0d..e5827d42b5b 100644
--- a/examples/integrations/micrometer/se/pom.xml
+++ b/examples/integrations/micrometer/se/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
diff --git a/examples/integrations/micronaut/data/pom.xml b/examples/integrations/micronaut/data/pom.xml
index 23e8b126722..4d0d021f115 100644
--- a/examples/integrations/micronaut/data/pom.xml
+++ b/examples/integrations/micronaut/data/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
helidon-examples-integrations-micronaut-data
diff --git a/examples/integrations/micronaut/pom.xml b/examples/integrations/micronaut/pom.xml
index 4b6cd7b4208..d39ff8bafc5 100644
--- a/examples/integrations/micronaut/pom.xml
+++ b/examples/integrations/micronaut/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples.integrations
helidon-examples-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.integrations.micronaut
helidon-examples-integrations-micronaut-project
diff --git a/examples/integrations/microstream/greetings-mp/pom.xml b/examples/integrations/microstream/greetings-mp/pom.xml
index 815e0da9a84..7f2ba9f9d5c 100644
--- a/examples/integrations/microstream/greetings-mp/pom.xml
+++ b/examples/integrations/microstream/greetings-mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
diff --git a/examples/integrations/microstream/greetings-se/pom.xml b/examples/integrations/microstream/greetings-se/pom.xml
index 13831af8ccb..a9bd81205a3 100644
--- a/examples/integrations/microstream/greetings-se/pom.xml
+++ b/examples/integrations/microstream/greetings-se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
diff --git a/examples/integrations/microstream/pom.xml b/examples/integrations/microstream/pom.xml
index 74f6886d56e..8d382565cd6 100644
--- a/examples/integrations/microstream/pom.xml
+++ b/examples/integrations/microstream/pom.xml
@@ -23,7 +23,7 @@
io.helidon.examples.integrations
helidon-examples-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.integrations.microstream
diff --git a/examples/integrations/neo4j/neo4j-mp/pom.xml b/examples/integrations/neo4j/neo4j-mp/pom.xml
index 0428a247082..4a9cfae5a64 100644
--- a/examples/integrations/neo4j/neo4j-mp/pom.xml
+++ b/examples/integrations/neo4j/neo4j-mp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.examples.integrations.neo4j
diff --git a/examples/integrations/neo4j/neo4j-se/pom.xml b/examples/integrations/neo4j/neo4j-se/pom.xml
index 605e8453b1a..c1c705cc4d5 100644
--- a/examples/integrations/neo4j/neo4j-se/pom.xml
+++ b/examples/integrations/neo4j/neo4j-se/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
io.helidon.examples.integrations.neo4j
diff --git a/examples/integrations/neo4j/pom.xml b/examples/integrations/neo4j/pom.xml
index f3e34ae1afa..fd856c77d5e 100644
--- a/examples/integrations/neo4j/pom.xml
+++ b/examples/integrations/neo4j/pom.xml
@@ -23,7 +23,7 @@
io.helidon.examples.integrations
helidon-examples-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.integrations.neo4j
helidon-examples-integrations-neo4j-project
diff --git a/examples/integrations/oci/atp-cdi/pom.xml b/examples/integrations/oci/atp-cdi/pom.xml
index 98dcd071f64..75a02c3b083 100644
--- a/examples/integrations/oci/atp-cdi/pom.xml
+++ b/examples/integrations/oci/atp-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
diff --git a/examples/integrations/oci/atp-reactive/pom.xml b/examples/integrations/oci/atp-reactive/pom.xml
index 89eb9df435c..259d266a473 100644
--- a/examples/integrations/oci/atp-reactive/pom.xml
+++ b/examples/integrations/oci/atp-reactive/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
diff --git a/examples/integrations/oci/metrics-reactive/pom.xml b/examples/integrations/oci/metrics-reactive/pom.xml
index 8f875a748fb..b2f0a5e864d 100644
--- a/examples/integrations/oci/metrics-reactive/pom.xml
+++ b/examples/integrations/oci/metrics-reactive/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
diff --git a/examples/integrations/oci/objectstorage-cdi/pom.xml b/examples/integrations/oci/objectstorage-cdi/pom.xml
index 1411b40aaeb..58c8e533da1 100644
--- a/examples/integrations/oci/objectstorage-cdi/pom.xml
+++ b/examples/integrations/oci/objectstorage-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
diff --git a/examples/integrations/oci/objectstorage-reactive/pom.xml b/examples/integrations/oci/objectstorage-reactive/pom.xml
index 9990696ab7c..a43a4b583e2 100644
--- a/examples/integrations/oci/objectstorage-reactive/pom.xml
+++ b/examples/integrations/oci/objectstorage-reactive/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
diff --git a/examples/integrations/oci/pom.xml b/examples/integrations/oci/pom.xml
index aeb7607b786..df1273f638f 100644
--- a/examples/integrations/oci/pom.xml
+++ b/examples/integrations/oci/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples.integrations
helidon-examples-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.integrations.oci
helidon-examples-integrations-oci-project
diff --git a/examples/integrations/oci/vault-cdi/pom.xml b/examples/integrations/oci/vault-cdi/pom.xml
index 05d296c252e..c9bcd42a9bb 100644
--- a/examples/integrations/oci/vault-cdi/pom.xml
+++ b/examples/integrations/oci/vault-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
diff --git a/examples/integrations/oci/vault-reactive/pom.xml b/examples/integrations/oci/vault-reactive/pom.xml
index 3c661b9246d..376686792d1 100644
--- a/examples/integrations/oci/vault-reactive/pom.xml
+++ b/examples/integrations/oci/vault-reactive/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
diff --git a/examples/integrations/pom.xml b/examples/integrations/pom.xml
index 5f06e142389..ce9ecd95d4e 100644
--- a/examples/integrations/pom.xml
+++ b/examples/integrations/pom.xml
@@ -23,7 +23,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.integrations
helidon-examples-integrations-project
diff --git a/examples/integrations/vault/hcp-cdi/pom.xml b/examples/integrations/vault/hcp-cdi/pom.xml
index 35e9e129728..e635fa3c326 100644
--- a/examples/integrations/vault/hcp-cdi/pom.xml
+++ b/examples/integrations/vault/hcp-cdi/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
diff --git a/examples/integrations/vault/hcp-reactive/pom.xml b/examples/integrations/vault/hcp-reactive/pom.xml
index d7a88932cda..a79ec992ac3 100644
--- a/examples/integrations/vault/hcp-reactive/pom.xml
+++ b/examples/integrations/vault/hcp-reactive/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
diff --git a/examples/integrations/vault/pom.xml b/examples/integrations/vault/pom.xml
index 589f512d154..51e8ca5aab4 100644
--- a/examples/integrations/vault/pom.xml
+++ b/examples/integrations/vault/pom.xml
@@ -23,7 +23,7 @@
io.helidon.examples.integrations
helidon-examples-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.integrations.vault
helidon-examples-integrations-vault-project
diff --git a/examples/jbatch/pom.xml b/examples/jbatch/pom.xml
index cc244075284..3cd33ac6318 100644
--- a/examples/jbatch/pom.xml
+++ b/examples/jbatch/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../applications/mp/pom.xml
io.helidon.examples.jbatch
diff --git a/examples/logging/jul/pom.xml b/examples/logging/jul/pom.xml
index 3635d7581e4..2cf91b1a3ea 100644
--- a/examples/logging/jul/pom.xml
+++ b/examples/logging/jul/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.logging
diff --git a/examples/logging/log4j/pom.xml b/examples/logging/log4j/pom.xml
index 6c962d195c3..ad52ec46c00 100644
--- a/examples/logging/log4j/pom.xml
+++ b/examples/logging/log4j/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.logging
diff --git a/examples/logging/logback-aot/pom.xml b/examples/logging/logback-aot/pom.xml
index 764d177be0b..a919e48955f 100644
--- a/examples/logging/logback-aot/pom.xml
+++ b/examples/logging/logback-aot/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.logging
diff --git a/examples/logging/pom.xml b/examples/logging/pom.xml
index 31fe88e1ab9..326da0f60ed 100644
--- a/examples/logging/pom.xml
+++ b/examples/logging/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.logging
helidon-examples-logging-project
diff --git a/examples/logging/slf4j/pom.xml b/examples/logging/slf4j/pom.xml
index 0ba957e076f..ba29aebf380 100644
--- a/examples/logging/slf4j/pom.xml
+++ b/examples/logging/slf4j/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.logging
diff --git a/examples/media/multipart/pom.xml b/examples/media/multipart/pom.xml
index 5ea2b7ac5d1..16788b2b1ba 100644
--- a/examples/media/multipart/pom.xml
+++ b/examples/media/multipart/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.media
diff --git a/examples/media/pom.xml b/examples/media/pom.xml
index 765785ef4f9..8906fc154f4 100644
--- a/examples/media/pom.xml
+++ b/examples/media/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.media
helidon-examples-media-project
diff --git a/examples/messaging/jms-websocket-mp/pom.xml b/examples/messaging/jms-websocket-mp/pom.xml
index 99b765c7409..78756921c07 100644
--- a/examples/messaging/jms-websocket-mp/pom.xml
+++ b/examples/messaging/jms-websocket-mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.jms
diff --git a/examples/messaging/jms-websocket-se/pom.xml b/examples/messaging/jms-websocket-se/pom.xml
index 2f08441795d..0414ad3889d 100644
--- a/examples/messaging/jms-websocket-se/pom.xml
+++ b/examples/messaging/jms-websocket-se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.jms
diff --git a/examples/messaging/kafka-websocket-mp/pom.xml b/examples/messaging/kafka-websocket-mp/pom.xml
index 1c7ab0abfc6..e5d8e2fe1f1 100644
--- a/examples/messaging/kafka-websocket-mp/pom.xml
+++ b/examples/messaging/kafka-websocket-mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.messaging.mp
diff --git a/examples/messaging/kafka-websocket-se/pom.xml b/examples/messaging/kafka-websocket-se/pom.xml
index 779bec79695..d5fa6146bef 100644
--- a/examples/messaging/kafka-websocket-se/pom.xml
+++ b/examples/messaging/kafka-websocket-se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.messaging.se
diff --git a/examples/messaging/oracle-aq-websocket-mp/pom.xml b/examples/messaging/oracle-aq-websocket-mp/pom.xml
index d9539a081e6..4134952edb4 100644
--- a/examples/messaging/oracle-aq-websocket-mp/pom.xml
+++ b/examples/messaging/oracle-aq-websocket-mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.messaging.aq
diff --git a/examples/messaging/pom.xml b/examples/messaging/pom.xml
index 122dc0b4565..05bf80c02d4 100644
--- a/examples/messaging/pom.xml
+++ b/examples/messaging/pom.xml
@@ -23,7 +23,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.messaging
helidon-examples-messaging-project
diff --git a/examples/messaging/weblogic-jms-mp/pom.xml b/examples/messaging/weblogic-jms-mp/pom.xml
index 644884a8ed3..9bfe9d4fec5 100644
--- a/examples/messaging/weblogic-jms-mp/pom.xml
+++ b/examples/messaging/weblogic-jms-mp/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.messaging.wls
diff --git a/examples/metrics/exemplar/pom.xml b/examples/metrics/exemplar/pom.xml
index 049475420e0..27f8bd72b73 100644
--- a/examples/metrics/exemplar/pom.xml
+++ b/examples/metrics/exemplar/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
4.0.0
diff --git a/examples/metrics/filtering/mp/pom.xml b/examples/metrics/filtering/mp/pom.xml
index 6d70ee6f7c8..bd745f7e74b 100644
--- a/examples/metrics/filtering/mp/pom.xml
+++ b/examples/metrics/filtering/mp/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
4.0.0
diff --git a/examples/metrics/filtering/pom.xml b/examples/metrics/filtering/pom.xml
index 562485c4a62..e30c6aca166 100644
--- a/examples/metrics/filtering/pom.xml
+++ b/examples/metrics/filtering/pom.xml
@@ -23,7 +23,7 @@
helidon-examples-metrics-project
io.helidon.examples
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/examples/metrics/filtering/se/pom.xml b/examples/metrics/filtering/se/pom.xml
index 5db55726237..50226b94b47 100644
--- a/examples/metrics/filtering/se/pom.xml
+++ b/examples/metrics/filtering/se/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
4.0.0
diff --git a/examples/metrics/http-status-count-se/pom.xml b/examples/metrics/http-status-count-se/pom.xml
index 4f51ed86c6b..dcbe331db41 100644
--- a/examples/metrics/http-status-count-se/pom.xml
+++ b/examples/metrics/http-status-count-se/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples
diff --git a/examples/metrics/kpi/pom.xml b/examples/metrics/kpi/pom.xml
index 8dbb9c080dc..8d6209dd403 100644
--- a/examples/metrics/kpi/pom.xml
+++ b/examples/metrics/kpi/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
4.0.0
diff --git a/examples/metrics/pom.xml b/examples/metrics/pom.xml
index 513b1cc8094..a16e78c4876 100644
--- a/examples/metrics/pom.xml
+++ b/examples/metrics/pom.xml
@@ -23,7 +23,7 @@
helidon-examples-project
io.helidon.examples
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/examples/microprofile/bean-validation/pom.xml b/examples/microprofile/bean-validation/pom.xml
index eb8d609ad3b..3d7980e6b84 100644
--- a/examples/microprofile/bean-validation/pom.xml
+++ b/examples/microprofile/bean-validation/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/cors/pom.xml b/examples/microprofile/cors/pom.xml
index a6e903d0e91..a336453fd85 100644
--- a/examples/microprofile/cors/pom.xml
+++ b/examples/microprofile/cors/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/graphql/pom.xml b/examples/microprofile/graphql/pom.xml
index 07db9144813..d0acc9d9e4e 100644
--- a/examples/microprofile/graphql/pom.xml
+++ b/examples/microprofile/graphql/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/hello-world-explicit/pom.xml b/examples/microprofile/hello-world-explicit/pom.xml
index 24a3fb4ce48..c60540d4882 100644
--- a/examples/microprofile/hello-world-explicit/pom.xml
+++ b/examples/microprofile/hello-world-explicit/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
helidon-examples-microprofile-hello-world-explicit
diff --git a/examples/microprofile/hello-world-implicit/pom.xml b/examples/microprofile/hello-world-implicit/pom.xml
index ac47932fc23..75c15cf7845 100644
--- a/examples/microprofile/hello-world-implicit/pom.xml
+++ b/examples/microprofile/hello-world-implicit/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/http-status-count-mp/pom.xml b/examples/microprofile/http-status-count-mp/pom.xml
index 12fdefa976b..107afcb0f32 100644
--- a/examples/microprofile/http-status-count-mp/pom.xml
+++ b/examples/microprofile/http-status-count-mp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples
diff --git a/examples/microprofile/idcs/pom.xml b/examples/microprofile/idcs/pom.xml
index 582a0c93708..11a7b4df02e 100644
--- a/examples/microprofile/idcs/pom.xml
+++ b/examples/microprofile/idcs/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/lra/pom.xml b/examples/microprofile/lra/pom.xml
index 9b6b10fc3e0..40f633a4e28 100644
--- a/examples/microprofile/lra/pom.xml
+++ b/examples/microprofile/lra/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/messaging-sse/pom.xml b/examples/microprofile/messaging-sse/pom.xml
index e2d86103266..e44d1ec8c63 100644
--- a/examples/microprofile/messaging-sse/pom.xml
+++ b/examples/microprofile/messaging-sse/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/multipart/pom.xml b/examples/microprofile/multipart/pom.xml
index 38c219a3e30..172671b4aee 100644
--- a/examples/microprofile/multipart/pom.xml
+++ b/examples/microprofile/multipart/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/multiport/pom.xml b/examples/microprofile/multiport/pom.xml
index 9ee18bc4f25..c4420c2cb97 100644
--- a/examples/microprofile/multiport/pom.xml
+++ b/examples/microprofile/multiport/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/oidc/pom.xml b/examples/microprofile/oidc/pom.xml
index 64050c8f3aa..33338d05981 100644
--- a/examples/microprofile/oidc/pom.xml
+++ b/examples/microprofile/oidc/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/openapi-basic/pom.xml b/examples/microprofile/openapi-basic/pom.xml
index f5bf36459a8..28e9e68d189 100644
--- a/examples/microprofile/openapi-basic/pom.xml
+++ b/examples/microprofile/openapi-basic/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/pom.xml b/examples/microprofile/pom.xml
index 97e9fc6a986..b3cbdea9080 100644
--- a/examples/microprofile/pom.xml
+++ b/examples/microprofile/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.examples.microprofile
diff --git a/examples/microprofile/security/pom.xml b/examples/microprofile/security/pom.xml
index 9ad13dc4b5b..ab2e670f8b7 100644
--- a/examples/microprofile/security/pom.xml
+++ b/examples/microprofile/security/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/static-content/pom.xml b/examples/microprofile/static-content/pom.xml
index b6805ab0b72..3c471b5beac 100644
--- a/examples/microprofile/static-content/pom.xml
+++ b/examples/microprofile/static-content/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/microprofile/tls/pom.xml b/examples/microprofile/tls/pom.xml
index 04ed6aa277e..52c3fd1a8b0 100644
--- a/examples/microprofile/tls/pom.xml
+++ b/examples/microprofile/tls/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
diff --git a/examples/microprofile/websocket/pom.xml b/examples/microprofile/websocket/pom.xml
index 9ba02319782..dac927f2ac6 100644
--- a/examples/microprofile/websocket/pom.xml
+++ b/examples/microprofile/websocket/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.microprofile
diff --git a/examples/openapi-tools/pom.xml b/examples/openapi-tools/pom.xml
index e8f0b25fd7d..8afb58f0ea9 100644
--- a/examples/openapi-tools/pom.xml
+++ b/examples/openapi-tools/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.examples.openapi.tools
diff --git a/examples/openapi-tools/quickstart-mp/mp-client/pom.xml b/examples/openapi-tools/quickstart-mp/mp-client/pom.xml
index 551ff14e9dc..22b587486b4 100644
--- a/examples/openapi-tools/quickstart-mp/mp-client/pom.xml
+++ b/examples/openapi-tools/quickstart-mp/mp-client/pom.xml
@@ -26,7 +26,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
openapi-mp-client
diff --git a/examples/openapi-tools/quickstart-mp/mp-server/pom.xml b/examples/openapi-tools/quickstart-mp/mp-server/pom.xml
index ed0ba05376e..66aea985432 100644
--- a/examples/openapi-tools/quickstart-mp/mp-server/pom.xml
+++ b/examples/openapi-tools/quickstart-mp/mp-server/pom.xml
@@ -26,7 +26,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
openapi-mp-server
diff --git a/examples/openapi-tools/quickstart-mp/pom.xml b/examples/openapi-tools/quickstart-mp/pom.xml
index 6489069d04b..c41b2b86365 100644
--- a/examples/openapi-tools/quickstart-mp/pom.xml
+++ b/examples/openapi-tools/quickstart-mp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples.openapi.tools
helidon-examples-openapi-tools-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
helidon-examples-openapi-tools-quickstart-mp
diff --git a/examples/openapi-tools/quickstart-se/pom.xml b/examples/openapi-tools/quickstart-se/pom.xml
index 89eca614483..2c3362fddf6 100644
--- a/examples/openapi-tools/quickstart-se/pom.xml
+++ b/examples/openapi-tools/quickstart-se/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples.openapi.tools
helidon-examples-openapi-tools-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
helidon-examples-openapi-tools-quickstart-se
diff --git a/examples/openapi-tools/quickstart-se/se-client/pom.xml b/examples/openapi-tools/quickstart-se/se-client/pom.xml
index d360d337e6c..4914e727b28 100644
--- a/examples/openapi-tools/quickstart-se/se-client/pom.xml
+++ b/examples/openapi-tools/quickstart-se/se-client/pom.xml
@@ -26,7 +26,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
openapi-se-client
diff --git a/examples/openapi-tools/quickstart-se/se-server/pom.xml b/examples/openapi-tools/quickstart-se/se-server/pom.xml
index caab00e89a1..774dd9db5d7 100644
--- a/examples/openapi-tools/quickstart-se/se-server/pom.xml
+++ b/examples/openapi-tools/quickstart-se/se-server/pom.xml
@@ -25,7 +25,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
org.openapitools
diff --git a/examples/openapi/pom.xml b/examples/openapi/pom.xml
index dfdd0e26459..ac509991dbc 100644
--- a/examples/openapi/pom.xml
+++ b/examples/openapi/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../applications/se/pom.xml
io.helidon.examples
diff --git a/examples/pom.xml b/examples/pom.xml
index 7dbf25f8110..eff04102a5d 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples
helidon-examples-project
diff --git a/examples/quickstarts/helidon-quickstart-mp/build.gradle b/examples/quickstarts/helidon-quickstart-mp/build.gradle
index 7e533600626..ab04bc6661e 100644
--- a/examples/quickstarts/helidon-quickstart-mp/build.gradle
+++ b/examples/quickstarts/helidon-quickstart-mp/build.gradle
@@ -32,7 +32,7 @@ tasks.withType(JavaCompile) {
}
ext {
- helidonversion = '3.1.3-SNAPSHOT'
+ helidonversion = '3.2.1-SNAPSHOT'
mainClass='io.helidon.microprofile.cdi.Main'
}
diff --git a/examples/quickstarts/helidon-quickstart-mp/pom.xml b/examples/quickstarts/helidon-quickstart-mp/pom.xml
index 07b757584aa..732444e9c26 100644
--- a/examples/quickstarts/helidon-quickstart-mp/pom.xml
+++ b/examples/quickstarts/helidon-quickstart-mp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples
diff --git a/examples/quickstarts/helidon-quickstart-se/build.gradle b/examples/quickstarts/helidon-quickstart-se/build.gradle
index c8b315bb971..f0413e0ed52 100644
--- a/examples/quickstarts/helidon-quickstart-se/build.gradle
+++ b/examples/quickstarts/helidon-quickstart-se/build.gradle
@@ -31,7 +31,7 @@ tasks.withType(JavaCompile) {
}
ext {
- helidonversion = '3.1.3-SNAPSHOT'
+ helidonversion = '3.2.1-SNAPSHOT'
mainClass='io.helidon.examples.quickstart.se.Main'
}
diff --git a/examples/quickstarts/helidon-quickstart-se/pom.xml b/examples/quickstarts/helidon-quickstart-se/pom.xml
index d474911e55c..5eac63f0eb3 100644
--- a/examples/quickstarts/helidon-quickstart-se/pom.xml
+++ b/examples/quickstarts/helidon-quickstart-se/pom.xml
@@ -24,12 +24,12 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples
helidon-quickstart-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Helidon Quickstart SE Example
diff --git a/examples/quickstarts/helidon-standalone-quickstart-mp/pom.xml b/examples/quickstarts/helidon-standalone-quickstart-mp/pom.xml
index cd669fc1da5..d53a074efab 100644
--- a/examples/quickstarts/helidon-standalone-quickstart-mp/pom.xml
+++ b/examples/quickstarts/helidon-standalone-quickstart-mp/pom.xml
@@ -22,11 +22,11 @@
4.0.0
io.helidon.examples.quickstarts
helidon-standalone-quickstart-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Helidon Standalone Quickstart MP Example
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.cdi.Main
17
diff --git a/examples/quickstarts/helidon-standalone-quickstart-se/pom.xml b/examples/quickstarts/helidon-standalone-quickstart-se/pom.xml
index 8f02adce7eb..4bbd2a63ed3 100644
--- a/examples/quickstarts/helidon-standalone-quickstart-se/pom.xml
+++ b/examples/quickstarts/helidon-standalone-quickstart-se/pom.xml
@@ -22,11 +22,11 @@
4.0.0
io.helidon.examples.quickstarts
helidon-standalone-quickstart-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Helidon Standalone Quickstart SE Example
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.quickstart.se.Main
17
diff --git a/examples/quickstarts/pom.xml b/examples/quickstarts/pom.xml
index 2c7085916ad..2a5ee862cb5 100644
--- a/examples/quickstarts/pom.xml
+++ b/examples/quickstarts/pom.xml
@@ -23,7 +23,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.quickstarts
examples-quickstarts-project
diff --git a/examples/security/attribute-based-access-control/pom.xml b/examples/security/attribute-based-access-control/pom.xml
index bb561692e8e..5f5f9c9b671 100644
--- a/examples/security/attribute-based-access-control/pom.xml
+++ b/examples/security/attribute-based-access-control/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.security
diff --git a/examples/security/basic-auth-with-static-content/pom.xml b/examples/security/basic-auth-with-static-content/pom.xml
index f5418266113..b69e671d82a 100644
--- a/examples/security/basic-auth-with-static-content/pom.xml
+++ b/examples/security/basic-auth-with-static-content/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/google-login/pom.xml b/examples/security/google-login/pom.xml
index 3c51d972590..380ddd66bb8 100644
--- a/examples/security/google-login/pom.xml
+++ b/examples/security/google-login/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/idcs-login/pom.xml b/examples/security/idcs-login/pom.xml
index 070a17aee25..9a6626d28a9 100644
--- a/examples/security/idcs-login/pom.xml
+++ b/examples/security/idcs-login/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.security
diff --git a/examples/security/jersey/pom.xml b/examples/security/jersey/pom.xml
index 24e103a0359..6811f1fd867 100644
--- a/examples/security/jersey/pom.xml
+++ b/examples/security/jersey/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/nohttp-programmatic/pom.xml b/examples/security/nohttp-programmatic/pom.xml
index 2ce3dc17fb7..0ea16db0364 100644
--- a/examples/security/nohttp-programmatic/pom.xml
+++ b/examples/security/nohttp-programmatic/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/outbound-override/pom.xml b/examples/security/outbound-override/pom.xml
index d98461e2aee..dbe063d98bb 100644
--- a/examples/security/outbound-override/pom.xml
+++ b/examples/security/outbound-override/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/pom.xml b/examples/security/pom.xml
index fd5a5cdc671..d8747ff9af4 100644
--- a/examples/security/pom.xml
+++ b/examples/security/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.security
helidon-examples-security-project
diff --git a/examples/security/spi-examples/pom.xml b/examples/security/spi-examples/pom.xml
index b454ec4338a..155bf21a04c 100644
--- a/examples/security/spi-examples/pom.xml
+++ b/examples/security/spi-examples/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/vaults/pom.xml b/examples/security/vaults/pom.xml
index c4cc4371cf2..58a2acb08f0 100644
--- a/examples/security/vaults/pom.xml
+++ b/examples/security/vaults/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/webserver-digest-auth/pom.xml b/examples/security/webserver-digest-auth/pom.xml
index 5fd3793c93d..179de643a5b 100644
--- a/examples/security/webserver-digest-auth/pom.xml
+++ b/examples/security/webserver-digest-auth/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/security/webserver-signatures/pom.xml b/examples/security/webserver-signatures/pom.xml
index ea63f1ff281..708403998c0 100644
--- a/examples/security/webserver-signatures/pom.xml
+++ b/examples/security/webserver-signatures/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.security
diff --git a/examples/todo-app/backend/pom.xml b/examples/todo-app/backend/pom.xml
index c9f53f2b7a5..35c7d6d91d5 100644
--- a/examples/todo-app/backend/pom.xml
+++ b/examples/todo-app/backend/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.examples.todos
diff --git a/examples/todo-app/frontend/pom.xml b/examples/todo-app/frontend/pom.xml
index 9da8a54c9e8..5104bc80599 100644
--- a/examples/todo-app/frontend/pom.xml
+++ b/examples/todo-app/frontend/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.todo
diff --git a/examples/todo-app/pom.xml b/examples/todo-app/pom.xml
index e4f338bb666..78bba3fe8bc 100644
--- a/examples/todo-app/pom.xml
+++ b/examples/todo-app/pom.xml
@@ -24,13 +24,13 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.todos
example-todo-app-project
pom
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Helidon Examples TODO Demo
diff --git a/examples/translator-app/backend/pom.xml b/examples/translator-app/backend/pom.xml
index 3bbcff88d86..0c2c240b235 100644
--- a/examples/translator-app/backend/pom.xml
+++ b/examples/translator-app/backend/pom.xml
@@ -24,12 +24,12 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.translator
helidon-examples-translator-backend
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Helidon Examples Translator Backend
diff --git a/examples/translator-app/frontend/pom.xml b/examples/translator-app/frontend/pom.xml
index b820feb8e17..cedd116fd95 100644
--- a/examples/translator-app/frontend/pom.xml
+++ b/examples/translator-app/frontend/pom.xml
@@ -24,12 +24,12 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.translator
helidon-examples-translator-frontend
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Helidon Examples Translator Frontend
diff --git a/examples/translator-app/pom.xml b/examples/translator-app/pom.xml
index a645930fe20..b0ea1f664f3 100644
--- a/examples/translator-app/pom.xml
+++ b/examples/translator-app/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.translator
helidon-examples-translator-project
diff --git a/examples/webclient/pom.xml b/examples/webclient/pom.xml
index 18d75f7ae38..828b532eb05 100644
--- a/examples/webclient/pom.xml
+++ b/examples/webclient/pom.xml
@@ -22,7 +22,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.webclient
diff --git a/examples/webclient/standalone/pom.xml b/examples/webclient/standalone/pom.xml
index e7803918dc0..e9c6fb70f99 100644
--- a/examples/webclient/standalone/pom.xml
+++ b/examples/webclient/standalone/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
diff --git a/examples/webserver/basics/pom.xml b/examples/webserver/basics/pom.xml
index 5994f3586ae..9c4ade74bfb 100644
--- a/examples/webserver/basics/pom.xml
+++ b/examples/webserver/basics/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/comment-aas/pom.xml b/examples/webserver/comment-aas/pom.xml
index bfe30944888..7ef9793041b 100644
--- a/examples/webserver/comment-aas/pom.xml
+++ b/examples/webserver/comment-aas/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/fault-tolerance/pom.xml b/examples/webserver/fault-tolerance/pom.xml
index c0eaf5efed6..a759f20806b 100644
--- a/examples/webserver/fault-tolerance/pom.xml
+++ b/examples/webserver/fault-tolerance/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
diff --git a/examples/webserver/jersey/pom.xml b/examples/webserver/jersey/pom.xml
index 95bb4ec8fbb..5760624ad34 100644
--- a/examples/webserver/jersey/pom.xml
+++ b/examples/webserver/jersey/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/multiport/pom.xml b/examples/webserver/multiport/pom.xml
index 2d861d68d5b..35fd66ce9ab 100644
--- a/examples/webserver/multiport/pom.xml
+++ b/examples/webserver/multiport/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/mutual-tls/pom.xml b/examples/webserver/mutual-tls/pom.xml
index c40759fe3ea..26e440fc3bd 100644
--- a/examples/webserver/mutual-tls/pom.xml
+++ b/examples/webserver/mutual-tls/pom.xml
@@ -21,7 +21,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/opentracing/pom.xml b/examples/webserver/opentracing/pom.xml
index d6bcd8f11f4..6ac3acf4dd0 100644
--- a/examples/webserver/opentracing/pom.xml
+++ b/examples/webserver/opentracing/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/pom.xml b/examples/webserver/pom.xml
index 894a237e631..05c9a0d79eb 100644
--- a/examples/webserver/pom.xml
+++ b/examples/webserver/pom.xml
@@ -24,7 +24,7 @@
io.helidon.examples
helidon-examples-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.examples.webserver
helidon-examples-webserver-project
diff --git a/examples/webserver/static-content/pom.xml b/examples/webserver/static-content/pom.xml
index 993451cefa3..6ac12dee1ea 100644
--- a/examples/webserver/static-content/pom.xml
+++ b/examples/webserver/static-content/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/streaming/pom.xml b/examples/webserver/streaming/pom.xml
index 58c155eccfd..34608baea91 100644
--- a/examples/webserver/streaming/pom.xml
+++ b/examples/webserver/streaming/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/threadpool/pom.xml b/examples/webserver/threadpool/pom.xml
index edbfac0fd16..2ca0b827fc9 100644
--- a/examples/webserver/threadpool/pom.xml
+++ b/examples/webserver/threadpool/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/tls/pom.xml b/examples/webserver/tls/pom.xml
index 4e5385f2ae9..f8105f570c7 100644
--- a/examples/webserver/tls/pom.xml
+++ b/examples/webserver/tls/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
diff --git a/examples/webserver/tutorial/pom.xml b/examples/webserver/tutorial/pom.xml
index 1e8b7b587ef..06cee69481f 100644
--- a/examples/webserver/tutorial/pom.xml
+++ b/examples/webserver/tutorial/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/examples/webserver/websocket/pom.xml b/examples/webserver/websocket/pom.xml
index 9f1f05b4e06..9fb0aa56096 100644
--- a/examples/webserver/websocket/pom.xml
+++ b/examples/webserver/websocket/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.examples.webserver
diff --git a/fault-tolerance/pom.xml b/fault-tolerance/pom.xml
index c163c86a14e..7923c06c0c5 100644
--- a/fault-tolerance/pom.xml
+++ b/fault-tolerance/pom.xml
@@ -22,7 +22,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.fault-tolerance
diff --git a/graphql/pom.xml b/graphql/pom.xml
index d6ae0067513..86eac0589be 100644
--- a/graphql/pom.xml
+++ b/graphql/pom.xml
@@ -26,7 +26,7 @@
helidon-project
io.helidon
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.graphql
diff --git a/graphql/server/pom.xml b/graphql/server/pom.xml
index 620ef53b4f7..9d36c59af65 100644
--- a/graphql/server/pom.xml
+++ b/graphql/server/pom.xml
@@ -25,7 +25,7 @@
io.helidon.graphql
helidon-graphql-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-graphql-server
diff --git a/grpc/client/pom.xml b/grpc/client/pom.xml
index 7b5726dc21f..968297eb1fc 100644
--- a/grpc/client/pom.xml
+++ b/grpc/client/pom.xml
@@ -25,7 +25,7 @@
io.helidon.grpc
helidon-grpc-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-grpc-client
diff --git a/grpc/core/pom.xml b/grpc/core/pom.xml
index 70034d447a4..7ac6c2fec1c 100644
--- a/grpc/core/pom.xml
+++ b/grpc/core/pom.xml
@@ -25,7 +25,7 @@
io.helidon.grpc
helidon-grpc-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-grpc-core
diff --git a/grpc/io.grpc/pom.xml b/grpc/io.grpc/pom.xml
index 51b03d811bb..2d36658066c 100644
--- a/grpc/io.grpc/pom.xml
+++ b/grpc/io.grpc/pom.xml
@@ -25,7 +25,7 @@
io.helidon.grpc
helidon-grpc-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.grpc
diff --git a/grpc/metrics/pom.xml b/grpc/metrics/pom.xml
index ec2da13fa01..98adc12bdcc 100644
--- a/grpc/metrics/pom.xml
+++ b/grpc/metrics/pom.xml
@@ -23,7 +23,7 @@
io.helidon.grpc
helidon-grpc-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-grpc-metrics
diff --git a/grpc/pom.xml b/grpc/pom.xml
index 1188d9c1a02..9d7905f3db1 100644
--- a/grpc/pom.xml
+++ b/grpc/pom.xml
@@ -26,7 +26,7 @@
helidon-project
io.helidon
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.grpc
diff --git a/grpc/server/pom.xml b/grpc/server/pom.xml
index 3952004ffd8..86e360c1ca4 100644
--- a/grpc/server/pom.xml
+++ b/grpc/server/pom.xml
@@ -25,7 +25,7 @@
io.helidon.grpc
helidon-grpc-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-grpc-server
diff --git a/health/common/pom.xml b/health/common/pom.xml
index 0642cb077bb..ccf5514b729 100644
--- a/health/common/pom.xml
+++ b/health/common/pom.xml
@@ -21,7 +21,7 @@
helidon-health-project
io.helidon.health
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/health/health-checks/pom.xml b/health/health-checks/pom.xml
index dd91aa8663e..0e0f754b70c 100644
--- a/health/health-checks/pom.xml
+++ b/health/health-checks/pom.xml
@@ -22,7 +22,7 @@
io.helidon.health
helidon-health-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-health-checks
diff --git a/health/health/pom.xml b/health/health/pom.xml
index 33b35c8498f..6ed0e45940b 100644
--- a/health/health/pom.xml
+++ b/health/health/pom.xml
@@ -21,7 +21,7 @@
helidon-health-project
io.helidon.health
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/health/pom.xml b/health/pom.xml
index 76f8867dc3a..e5ba047f21f 100644
--- a/health/pom.xml
+++ b/health/pom.xml
@@ -22,7 +22,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/integrations/cdi/common-cdi/delegates/pom.xml b/integrations/cdi/common-cdi/delegates/pom.xml
index 0208404f72c..b9f4091086e 100644
--- a/integrations/cdi/common-cdi/delegates/pom.xml
+++ b/integrations/cdi/common-cdi/delegates/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-delegates
Helidon CDI Integrations Common Delegates
diff --git a/integrations/cdi/common-cdi/pom.xml b/integrations/cdi/common-cdi/pom.xml
index 212e98d90f4..39ac4920cec 100644
--- a/integrations/cdi/common-cdi/pom.xml
+++ b/integrations/cdi/common-cdi/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-common-project
pom
diff --git a/integrations/cdi/common-cdi/reference-counted-context/pom.xml b/integrations/cdi/common-cdi/reference-counted-context/pom.xml
index bbe392f51f2..3230a05f990 100644
--- a/integrations/cdi/common-cdi/reference-counted-context/pom.xml
+++ b/integrations/cdi/common-cdi/reference-counted-context/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-reference-counted-context
Helidon CDI Integrations Common Reference Counted Context
diff --git a/integrations/cdi/datasource-hikaricp/pom.xml b/integrations/cdi/datasource-hikaricp/pom.xml
index 94f87d09161..dd171c6ecba 100644
--- a/integrations/cdi/datasource-hikaricp/pom.xml
+++ b/integrations/cdi/datasource-hikaricp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-datasource-hikaricp
Helidon CDI Integrations HikariCP DataSource
diff --git a/integrations/cdi/datasource-ucp/pom.xml b/integrations/cdi/datasource-ucp/pom.xml
index 411917924d4..35fedbc2035 100644
--- a/integrations/cdi/datasource-ucp/pom.xml
+++ b/integrations/cdi/datasource-ucp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-datasource-ucp
Helidon CDI Integrations UCP DataSource
diff --git a/integrations/cdi/datasource/pom.xml b/integrations/cdi/datasource/pom.xml
index 8004c7f9687..965009058d7 100644
--- a/integrations/cdi/datasource/pom.xml
+++ b/integrations/cdi/datasource/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-datasource
Helidon CDI Integrations DataSource
diff --git a/integrations/cdi/eclipselink-cdi/pom.xml b/integrations/cdi/eclipselink-cdi/pom.xml
index 7053ec7cb22..2958e8cfb8a 100644
--- a/integrations/cdi/eclipselink-cdi/pom.xml
+++ b/integrations/cdi/eclipselink-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-eclipselink
Helidon CDI Integrations Eclipselink
diff --git a/integrations/cdi/hibernate-cdi/pom.xml b/integrations/cdi/hibernate-cdi/pom.xml
index 9575c8f9092..80d37b3aae4 100644
--- a/integrations/cdi/hibernate-cdi/pom.xml
+++ b/integrations/cdi/hibernate-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-hibernate
Helidon CDI Integrations Hibernate
diff --git a/integrations/cdi/jedis-cdi/pom.xml b/integrations/cdi/jedis-cdi/pom.xml
index 8e8e7df6ab1..4dbd60d6161 100644
--- a/integrations/cdi/jedis-cdi/pom.xml
+++ b/integrations/cdi/jedis-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-jedis
Helidon CDI Integrations Jedis
diff --git a/integrations/cdi/jpa-cdi/pom.xml b/integrations/cdi/jpa-cdi/pom.xml
index 0eafb27272f..6c8c6589e74 100644
--- a/integrations/cdi/jpa-cdi/pom.xml
+++ b/integrations/cdi/jpa-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-jpa
Helidon CDI Integrations JPA
diff --git a/integrations/cdi/jta-cdi/pom.xml b/integrations/cdi/jta-cdi/pom.xml
index d7fb65b41db..1072c41464b 100644
--- a/integrations/cdi/jta-cdi/pom.xml
+++ b/integrations/cdi/jta-cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-jta
Helidon CDI Integrations JTA
diff --git a/integrations/cdi/jta-weld/pom.xml b/integrations/cdi/jta-weld/pom.xml
index b9f94a2abca..66ae693a91e 100644
--- a/integrations/cdi/jta-weld/pom.xml
+++ b/integrations/cdi/jta-weld/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.cdi
helidon-integrations-cdi-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-cdi-jta-weld
Helidon CDI Integrations JTA Weld
diff --git a/integrations/cdi/pom.xml b/integrations/cdi/pom.xml
index 426f0ac9732..4152c0762c8 100644
--- a/integrations/cdi/pom.xml
+++ b/integrations/cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.cdi
helidon-integrations-cdi-project
diff --git a/integrations/common/pom.xml b/integrations/common/pom.xml
index 73f1e9b8522..047abffd951 100644
--- a/integrations/common/pom.xml
+++ b/integrations/common/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/integrations/common/rest/pom.xml b/integrations/common/rest/pom.xml
index 038a1a01d90..6eacbb4774b 100644
--- a/integrations/common/rest/pom.xml
+++ b/integrations/common/rest/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.common
helidon-integrations-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-common-rest
diff --git a/integrations/db/h2/pom.xml b/integrations/db/h2/pom.xml
index 2517d01c2c7..9d9bcda5e24 100644
--- a/integrations/db/h2/pom.xml
+++ b/integrations/db/h2/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.db
helidon-integrations-db-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
h2
diff --git a/integrations/db/mysql/pom.xml b/integrations/db/mysql/pom.xml
index b5228165fdb..1776d07913f 100644
--- a/integrations/db/mysql/pom.xml
+++ b/integrations/db/mysql/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.db
helidon-integrations-db-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-db-mysql
diff --git a/integrations/db/ojdbc/pom.xml b/integrations/db/ojdbc/pom.xml
index 5dffd485ed2..9468847fef3 100644
--- a/integrations/db/ojdbc/pom.xml
+++ b/integrations/db/ojdbc/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.db
helidon-integrations-db-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
ojdbc
diff --git a/integrations/db/pgsql/pom.xml b/integrations/db/pgsql/pom.xml
index 1772b666662..61dbfa9dd28 100644
--- a/integrations/db/pgsql/pom.xml
+++ b/integrations/db/pgsql/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.db
helidon-integrations-db-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-db-pgsql
diff --git a/integrations/db/pom.xml b/integrations/db/pom.xml
index 6315d41766b..3146de4b225 100644
--- a/integrations/db/pom.xml
+++ b/integrations/db/pom.xml
@@ -21,7 +21,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/integrations/graal/mp-native-image-extension/pom.xml b/integrations/graal/mp-native-image-extension/pom.xml
index 07ec28bcc39..3eeeea6cdfa 100644
--- a/integrations/graal/mp-native-image-extension/pom.xml
+++ b/integrations/graal/mp-native-image-extension/pom.xml
@@ -21,7 +21,7 @@
io.helidon.integrations.graal
helidon-integrations-graal-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/integrations/graal/native-image-extension/pom.xml b/integrations/graal/native-image-extension/pom.xml
index 5e1fd624259..ce951051a51 100644
--- a/integrations/graal/native-image-extension/pom.xml
+++ b/integrations/graal/native-image-extension/pom.xml
@@ -21,7 +21,7 @@
io.helidon.integrations.graal
helidon-integrations-graal-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/integrations/graal/pom.xml b/integrations/graal/pom.xml
index 08a5960c97b..fcd072b3627 100644
--- a/integrations/graal/pom.xml
+++ b/integrations/graal/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
diff --git a/integrations/jdbc/jdbc/pom.xml b/integrations/jdbc/jdbc/pom.xml
index 6e492890720..034b444fe95 100644
--- a/integrations/jdbc/jdbc/pom.xml
+++ b/integrations/jdbc/jdbc/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-jdbc-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.jdbc
diff --git a/integrations/jdbc/pom.xml b/integrations/jdbc/pom.xml
index ac6b3c6326f..e53f24157e2 100644
--- a/integrations/jdbc/pom.xml
+++ b/integrations/jdbc/pom.xml
@@ -21,7 +21,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/integrations/jta/jdbc/pom.xml b/integrations/jta/jdbc/pom.xml
index 71d90634519..e2279d18e2f 100644
--- a/integrations/jta/jdbc/pom.xml
+++ b/integrations/jta/jdbc/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-jta-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.jta
diff --git a/integrations/jta/pom.xml b/integrations/jta/pom.xml
index d5fc92d7626..20cfccbe1e3 100644
--- a/integrations/jta/pom.xml
+++ b/integrations/jta/pom.xml
@@ -21,7 +21,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/integrations/micrometer/cdi/pom.xml b/integrations/micrometer/cdi/pom.xml
index 6ce4ed49c7d..782ca74be21 100644
--- a/integrations/micrometer/cdi/pom.xml
+++ b/integrations/micrometer/cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations
helidon-integrations-micrometer-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.micrometer
diff --git a/integrations/micrometer/micrometer/pom.xml b/integrations/micrometer/micrometer/pom.xml
index 6b9abc9860f..64af0a6dc7c 100644
--- a/integrations/micrometer/micrometer/pom.xml
+++ b/integrations/micrometer/micrometer/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations
helidon-integrations-micrometer-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.micrometer
diff --git a/integrations/micrometer/pom.xml b/integrations/micrometer/pom.xml
index bbaa96ca1a1..abd953c144b 100644
--- a/integrations/micrometer/pom.xml
+++ b/integrations/micrometer/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-micrometer-project
Helidon Integrations Micrometer Project
diff --git a/integrations/micronaut/cdi-processor/pom.xml b/integrations/micronaut/cdi-processor/pom.xml
index cd14b66cf07..94d30ef763b 100644
--- a/integrations/micronaut/cdi-processor/pom.xml
+++ b/integrations/micronaut/cdi-processor/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.micronaut
helidon-integrations-micronaut-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-micronaut-cdi-processor
diff --git a/integrations/micronaut/cdi/pom.xml b/integrations/micronaut/cdi/pom.xml
index c2c8fc2e3b3..db9ec64b073 100644
--- a/integrations/micronaut/cdi/pom.xml
+++ b/integrations/micronaut/cdi/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.micronaut
helidon-integrations-micronaut-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-micronaut-cdi
diff --git a/integrations/micronaut/data/pom.xml b/integrations/micronaut/data/pom.xml
index 9ffff58289e..d1968e6269f 100644
--- a/integrations/micronaut/data/pom.xml
+++ b/integrations/micronaut/data/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.micronaut
helidon-integrations-micronaut-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-micronaut-data
diff --git a/integrations/micronaut/pom.xml b/integrations/micronaut/pom.xml
index 3b8757503ab..7b9af9d591d 100644
--- a/integrations/micronaut/pom.xml
+++ b/integrations/micronaut/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.micronaut
diff --git a/integrations/microstream/cache/pom.xml b/integrations/microstream/cache/pom.xml
index e77933f9800..ad8e51e8522 100644
--- a/integrations/microstream/cache/pom.xml
+++ b/integrations/microstream/cache/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.microstream
helidon-integrations-microstream-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-microstream-cache
diff --git a/integrations/microstream/cdi/pom.xml b/integrations/microstream/cdi/pom.xml
index 00388f5e204..b3c3a695b5c 100644
--- a/integrations/microstream/cdi/pom.xml
+++ b/integrations/microstream/cdi/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.microstream
helidon-integrations-microstream-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-microstream-cdi
diff --git a/integrations/microstream/core/pom.xml b/integrations/microstream/core/pom.xml
index 2de0e389a83..62e134a3e20 100644
--- a/integrations/microstream/core/pom.xml
+++ b/integrations/microstream/core/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.microstream
helidon-integrations-microstream-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-microstream
diff --git a/integrations/microstream/health/pom.xml b/integrations/microstream/health/pom.xml
index 3b1f2c9d976..865583911fa 100644
--- a/integrations/microstream/health/pom.xml
+++ b/integrations/microstream/health/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.microstream
helidon-integrations-microstream-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-microstream-health
diff --git a/integrations/microstream/metrics/pom.xml b/integrations/microstream/metrics/pom.xml
index 6feb3933ee7..53f69ef5a20 100644
--- a/integrations/microstream/metrics/pom.xml
+++ b/integrations/microstream/metrics/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.microstream
helidon-integrations-microstream-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-microstream-metrics
diff --git a/integrations/microstream/pom.xml b/integrations/microstream/pom.xml
index 5c49b918c48..bbf9fd93f71 100644
--- a/integrations/microstream/pom.xml
+++ b/integrations/microstream/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.microstream
diff --git a/integrations/neo4j/health/pom.xml b/integrations/neo4j/health/pom.xml
index 02ab1f14c5c..1ace9416d9a 100644
--- a/integrations/neo4j/health/pom.xml
+++ b/integrations/neo4j/health/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.neo4j
helidon-integrations-neo4j-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-neo4j-health
diff --git a/integrations/neo4j/metrics/pom.xml b/integrations/neo4j/metrics/pom.xml
index b1a0f01cc30..a814fd169f0 100644
--- a/integrations/neo4j/metrics/pom.xml
+++ b/integrations/neo4j/metrics/pom.xml
@@ -23,7 +23,7 @@
io.helidon.integrations.neo4j
helidon-integrations-neo4j-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-neo4j-metrics
diff --git a/integrations/neo4j/neo4j/pom.xml b/integrations/neo4j/neo4j/pom.xml
index 4d96ff49192..032ac4ac3d0 100644
--- a/integrations/neo4j/neo4j/pom.xml
+++ b/integrations/neo4j/neo4j/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.neo4j
helidon-integrations-neo4j-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-neo4j
diff --git a/integrations/neo4j/pom.xml b/integrations/neo4j/pom.xml
index 0d15141f36e..041ae936401 100644
--- a/integrations/neo4j/pom.xml
+++ b/integrations/neo4j/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.neo4j
helidon-integrations-neo4j-project
diff --git a/integrations/oci/metrics/cdi/pom.xml b/integrations/oci/metrics/cdi/pom.xml
index 97e80a5fa84..e700cd7e625 100644
--- a/integrations/oci/metrics/cdi/pom.xml
+++ b/integrations/oci/metrics/cdi/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.oci.metrics
helidon-integrations-oci-metrics-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-oci-metrics-cdi
Helidon Integrations OCI Metrics CDI
diff --git a/integrations/oci/metrics/metrics/pom.xml b/integrations/oci/metrics/metrics/pom.xml
index a2e9ffccb2c..97dfdf99403 100644
--- a/integrations/oci/metrics/metrics/pom.xml
+++ b/integrations/oci/metrics/metrics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.oci.metrics
helidon-integrations-oci-metrics-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-oci-metrics
Helidon Integrations OCI Metrics
diff --git a/integrations/oci/metrics/pom.xml b/integrations/oci/metrics/pom.xml
index 83fe39bca84..c96c82acde6 100644
--- a/integrations/oci/metrics/pom.xml
+++ b/integrations/oci/metrics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.oci
helidon-integrations-oci-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.oci.metrics
helidon-integrations-oci-metrics-project
diff --git a/integrations/oci/pom.xml b/integrations/oci/pom.xml
index 7bd97bf6826..8afb6d73a10 100644
--- a/integrations/oci/pom.xml
+++ b/integrations/oci/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.oci
diff --git a/integrations/oci/sdk/cdi/pom.xml b/integrations/oci/sdk/cdi/pom.xml
index a0a157d9776..67f247c5f4b 100644
--- a/integrations/oci/sdk/cdi/pom.xml
+++ b/integrations/oci/sdk/cdi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.oci.sdk
helidon-integrations-oci-sdk-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-oci-sdk-cdi
Helidon Integrations OCI SDK CDI
diff --git a/integrations/oci/sdk/pom.xml b/integrations/oci/sdk/pom.xml
index 5b9705a1f76..bc59a15aacb 100644
--- a/integrations/oci/sdk/pom.xml
+++ b/integrations/oci/sdk/pom.xml
@@ -24,7 +24,7 @@
io.helidon.integrations.oci
helidon-integrations-oci-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.integrations.oci.sdk
diff --git a/integrations/openapi-ui/pom.xml b/integrations/openapi-ui/pom.xml
index 5828aba6ef2..c6d5ae38209 100644
--- a/integrations/openapi-ui/pom.xml
+++ b/integrations/openapi-ui/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.openapi-ui
diff --git a/integrations/pom.xml b/integrations/pom.xml
index 75625acaa5b..dadbc3de031 100644
--- a/integrations/pom.xml
+++ b/integrations/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations
helidon-integrations-project
diff --git a/integrations/vault/auths/approle/pom.xml b/integrations/vault/auths/approle/pom.xml
index 1378ea997ae..cba3cb1403e 100644
--- a/integrations/vault/auths/approle/pom.xml
+++ b/integrations/vault/auths/approle/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.auths
helidon-integrations-vault-auths-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-auths-approle
diff --git a/integrations/vault/auths/common/pom.xml b/integrations/vault/auths/common/pom.xml
index ab582400c69..ba3006cc4f7 100644
--- a/integrations/vault/auths/common/pom.xml
+++ b/integrations/vault/auths/common/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.auths
helidon-integrations-vault-auths-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-auths-common
diff --git a/integrations/vault/auths/k8s/pom.xml b/integrations/vault/auths/k8s/pom.xml
index b8bce7afef9..bb504788cd5 100644
--- a/integrations/vault/auths/k8s/pom.xml
+++ b/integrations/vault/auths/k8s/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.auths
helidon-integrations-vault-auths-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-auths-k8s
diff --git a/integrations/vault/auths/pom.xml b/integrations/vault/auths/pom.xml
index 4c6d5f4961d..713973cc872 100644
--- a/integrations/vault/auths/pom.xml
+++ b/integrations/vault/auths/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault
helidon-integrations-vault-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/integrations/vault/auths/token/pom.xml b/integrations/vault/auths/token/pom.xml
index 242bc459991..512bda48f22 100644
--- a/integrations/vault/auths/token/pom.xml
+++ b/integrations/vault/auths/token/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.auths
helidon-integrations-vault-auths-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-auths-token
diff --git a/integrations/vault/cdi/pom.xml b/integrations/vault/cdi/pom.xml
index 003790f3b03..fa8b0ff2c43 100644
--- a/integrations/vault/cdi/pom.xml
+++ b/integrations/vault/cdi/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault
helidon-integrations-vault-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-cdi
diff --git a/integrations/vault/pom.xml b/integrations/vault/pom.xml
index b8db28b8c08..82db26a52e9 100644
--- a/integrations/vault/pom.xml
+++ b/integrations/vault/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations
helidon-integrations-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.integrations.vault
diff --git a/integrations/vault/secrets/cubbyhole/pom.xml b/integrations/vault/secrets/cubbyhole/pom.xml
index 3f46d842d38..c54bd9125b6 100644
--- a/integrations/vault/secrets/cubbyhole/pom.xml
+++ b/integrations/vault/secrets/cubbyhole/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.secrets
helidon-integrations-vault-secrets-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-secrets-cubbyhole
diff --git a/integrations/vault/secrets/database/pom.xml b/integrations/vault/secrets/database/pom.xml
index 632598d31b7..d1788d5764e 100644
--- a/integrations/vault/secrets/database/pom.xml
+++ b/integrations/vault/secrets/database/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.secrets
helidon-integrations-vault-secrets-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-secrets-database
diff --git a/integrations/vault/secrets/kv1/pom.xml b/integrations/vault/secrets/kv1/pom.xml
index c1bd749032f..3d8fcece3ca 100644
--- a/integrations/vault/secrets/kv1/pom.xml
+++ b/integrations/vault/secrets/kv1/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.secrets
helidon-integrations-vault-secrets-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-secrets-kv1
diff --git a/integrations/vault/secrets/kv2/pom.xml b/integrations/vault/secrets/kv2/pom.xml
index 558b531f8a0..4eda1ef8910 100644
--- a/integrations/vault/secrets/kv2/pom.xml
+++ b/integrations/vault/secrets/kv2/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.secrets
helidon-integrations-vault-secrets-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-secrets-kv2
diff --git a/integrations/vault/secrets/pki/pom.xml b/integrations/vault/secrets/pki/pom.xml
index 2ad62cc0a01..e3defe2d34a 100644
--- a/integrations/vault/secrets/pki/pom.xml
+++ b/integrations/vault/secrets/pki/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.secrets
helidon-integrations-vault-secrets-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-secrets-pki
diff --git a/integrations/vault/secrets/pom.xml b/integrations/vault/secrets/pom.xml
index 99c33479887..1993c599f93 100644
--- a/integrations/vault/secrets/pom.xml
+++ b/integrations/vault/secrets/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault
helidon-integrations-vault-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/integrations/vault/secrets/transit/pom.xml b/integrations/vault/secrets/transit/pom.xml
index 7c26102dabf..8d5db92e943 100644
--- a/integrations/vault/secrets/transit/pom.xml
+++ b/integrations/vault/secrets/transit/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault.secrets
helidon-integrations-vault-secrets-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault-secrets-transit
diff --git a/integrations/vault/sys/pom.xml b/integrations/vault/sys/pom.xml
index d60fd75037b..db63c5f7b59 100644
--- a/integrations/vault/sys/pom.xml
+++ b/integrations/vault/sys/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault
helidon-integrations-vault-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/integrations/vault/sys/sys/pom.xml b/integrations/vault/sys/sys/pom.xml
index 87370f5ca8f..252be101cb3 100644
--- a/integrations/vault/sys/sys/pom.xml
+++ b/integrations/vault/sys/sys/pom.xml
@@ -21,7 +21,7 @@
helidon-integrations-vault-sys-project
io.helidon.integrations.vault.sys
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/integrations/vault/vault/pom.xml b/integrations/vault/vault/pom.xml
index 2e3d81eec78..c5878a74bc1 100644
--- a/integrations/vault/vault/pom.xml
+++ b/integrations/vault/vault/pom.xml
@@ -22,7 +22,7 @@
io.helidon.integrations.vault
helidon-integrations-vault-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-integrations-vault
diff --git a/jersey/client/pom.xml b/jersey/client/pom.xml
index 1a47689d6fa..6b2f13ff471 100644
--- a/jersey/client/pom.xml
+++ b/jersey/client/pom.xml
@@ -21,7 +21,7 @@
io.helidon.jersey
helidon-jersey-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/jersey/common/pom.xml b/jersey/common/pom.xml
index bee2dea7e89..851e6c81d74 100644
--- a/jersey/common/pom.xml
+++ b/jersey/common/pom.xml
@@ -21,7 +21,7 @@
helidon-jersey-project
io.helidon.jersey
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/jersey/connector/pom.xml b/jersey/connector/pom.xml
index a232e539398..b2ae7ba43f6 100644
--- a/jersey/connector/pom.xml
+++ b/jersey/connector/pom.xml
@@ -21,7 +21,7 @@
helidon-jersey-project
io.helidon.jersey
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/jersey/jsonp/pom.xml b/jersey/jsonp/pom.xml
index d112feecd18..206c26597e7 100644
--- a/jersey/jsonp/pom.xml
+++ b/jersey/jsonp/pom.xml
@@ -21,7 +21,7 @@
helidon-jersey-project
io.helidon.jersey
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/jersey/pom.xml b/jersey/pom.xml
index fc270048a7b..cdb3c49089e 100644
--- a/jersey/pom.xml
+++ b/jersey/pom.xml
@@ -21,7 +21,7 @@
helidon-project
io.helidon
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/jersey/server/pom.xml b/jersey/server/pom.xml
index 7918b140198..da81e7d6d2a 100644
--- a/jersey/server/pom.xml
+++ b/jersey/server/pom.xml
@@ -22,7 +22,7 @@
io.helidon.jersey
helidon-jersey-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-jersey-server
diff --git a/licensing/pom.xml b/licensing/pom.xml
index 9483a3018b1..7a742ee73ac 100644
--- a/licensing/pom.xml
+++ b/licensing/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.licensing
helidon-licensing
diff --git a/logging/common/pom.xml b/logging/common/pom.xml
index 2be9868d3fb..c9957698a73 100644
--- a/logging/common/pom.xml
+++ b/logging/common/pom.xml
@@ -21,7 +21,7 @@
helidon-logging-project
io.helidon.logging
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-logging-common
diff --git a/logging/jul/pom.xml b/logging/jul/pom.xml
index bd6b39810e6..f4a9c2b9d55 100644
--- a/logging/jul/pom.xml
+++ b/logging/jul/pom.xml
@@ -20,7 +20,7 @@
helidon-logging-project
io.helidon.logging
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/logging/log4j/pom.xml b/logging/log4j/pom.xml
index 575a2530efe..014374f0135 100644
--- a/logging/log4j/pom.xml
+++ b/logging/log4j/pom.xml
@@ -20,7 +20,7 @@
helidon-logging-project
io.helidon.logging
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/logging/pom.xml b/logging/pom.xml
index 85de84d7bc8..09a229df8ad 100644
--- a/logging/pom.xml
+++ b/logging/pom.xml
@@ -21,7 +21,7 @@
helidon-project
io.helidon
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.logging
diff --git a/logging/slf4j/pom.xml b/logging/slf4j/pom.xml
index ec2ce977f30..59e7a5683cc 100644
--- a/logging/slf4j/pom.xml
+++ b/logging/slf4j/pom.xml
@@ -21,7 +21,7 @@
helidon-logging-project
io.helidon.logging
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-logging-slf4j
diff --git a/lra/coordinator/client/narayana-client/pom.xml b/lra/coordinator/client/narayana-client/pom.xml
index 700d239d197..f0024999469 100644
--- a/lra/coordinator/client/narayana-client/pom.xml
+++ b/lra/coordinator/client/narayana-client/pom.xml
@@ -24,7 +24,7 @@
io.helidon.lra
helidon-lra-coordinator-client-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-lra-coordinator-narayana-client
diff --git a/lra/coordinator/client/pom.xml b/lra/coordinator/client/pom.xml
index 6c70590bef2..ca1c407aa97 100644
--- a/lra/coordinator/client/pom.xml
+++ b/lra/coordinator/client/pom.xml
@@ -24,7 +24,7 @@
io.helidon.lra
helidon-lra-coordinator-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.lra
helidon-lra-coordinator-client-project
diff --git a/lra/coordinator/client/spi/pom.xml b/lra/coordinator/client/spi/pom.xml
index 0b550fe4378..89d36eddad8 100644
--- a/lra/coordinator/client/spi/pom.xml
+++ b/lra/coordinator/client/spi/pom.xml
@@ -24,7 +24,7 @@
io.helidon.lra
helidon-lra-coordinator-client-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-lra-coordinator-client-spi
diff --git a/lra/coordinator/pom.xml b/lra/coordinator/pom.xml
index 49dbabfc208..c8971eb8084 100644
--- a/lra/coordinator/pom.xml
+++ b/lra/coordinator/pom.xml
@@ -24,7 +24,7 @@
io.helidon.lra
helidon-lra-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.lra
helidon-lra-coordinator-project
diff --git a/lra/coordinator/server/pom.xml b/lra/coordinator/server/pom.xml
index e94ddab8b1d..f32076a2856 100644
--- a/lra/coordinator/server/pom.xml
+++ b/lra/coordinator/server/pom.xml
@@ -25,7 +25,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
diff --git a/lra/pom.xml b/lra/pom.xml
index ee6a1655f89..3d41cc769b2 100644
--- a/lra/pom.xml
+++ b/lra/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.lra
helidon-lra-project
diff --git a/media/common/pom.xml b/media/common/pom.xml
index fb964a8eaba..8ba3c8d3532 100644
--- a/media/common/pom.xml
+++ b/media/common/pom.xml
@@ -21,7 +21,7 @@
io.helidon.media
helidon-media-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/media/jackson/pom.xml b/media/jackson/pom.xml
index eacd58eb032..5f5d4ddab04 100644
--- a/media/jackson/pom.xml
+++ b/media/jackson/pom.xml
@@ -23,7 +23,7 @@
io.helidon.media
helidon-media-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-media-jackson
diff --git a/media/jsonb/pom.xml b/media/jsonb/pom.xml
index dbc8da474a7..03abf1ecb08 100644
--- a/media/jsonb/pom.xml
+++ b/media/jsonb/pom.xml
@@ -23,7 +23,7 @@
io.helidon.media
helidon-media-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-media-jsonb
diff --git a/media/jsonp/pom.xml b/media/jsonp/pom.xml
index edebf62241c..c5de12b348d 100644
--- a/media/jsonp/pom.xml
+++ b/media/jsonp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.media
helidon-media-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-media-jsonp
diff --git a/media/multipart/pom.xml b/media/multipart/pom.xml
index 01f3e7c00ae..929710e8de4 100644
--- a/media/multipart/pom.xml
+++ b/media/multipart/pom.xml
@@ -22,7 +22,7 @@
io.helidon.media
helidon-media-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-media-multipart
Helidon Media MultiPart
diff --git a/media/pom.xml b/media/pom.xml
index d154777f776..567bfc3821e 100644
--- a/media/pom.xml
+++ b/media/pom.xml
@@ -22,7 +22,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.media
diff --git a/messaging/connectors/aq/pom.xml b/messaging/connectors/aq/pom.xml
index dc7d27eb17c..589cee3faaf 100644
--- a/messaging/connectors/aq/pom.xml
+++ b/messaging/connectors/aq/pom.xml
@@ -24,7 +24,7 @@
io.helidon.messaging
helidon-messaging-connectors-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.messaging.aq
diff --git a/messaging/connectors/jms-shim/pom.xml b/messaging/connectors/jms-shim/pom.xml
index c2f97585074..522dc829f67 100644
--- a/messaging/connectors/jms-shim/pom.xml
+++ b/messaging/connectors/jms-shim/pom.xml
@@ -24,7 +24,7 @@
io.helidon.messaging
helidon-messaging-connectors-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-messaging-jms-shim
diff --git a/messaging/connectors/jms/pom.xml b/messaging/connectors/jms/pom.xml
index 12107a3825a..612cb034e69 100644
--- a/messaging/connectors/jms/pom.xml
+++ b/messaging/connectors/jms/pom.xml
@@ -24,7 +24,7 @@
io.helidon.messaging
helidon-messaging-connectors-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.messaging.jms
diff --git a/messaging/connectors/kafka/pom.xml b/messaging/connectors/kafka/pom.xml
index a5f586decef..a705332d68d 100644
--- a/messaging/connectors/kafka/pom.xml
+++ b/messaging/connectors/kafka/pom.xml
@@ -25,7 +25,7 @@
io.helidon.messaging
helidon-messaging-connectors-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.messaging.kafka
diff --git a/messaging/connectors/mock/pom.xml b/messaging/connectors/mock/pom.xml
index c558f849e49..f96230d4836 100644
--- a/messaging/connectors/mock/pom.xml
+++ b/messaging/connectors/mock/pom.xml
@@ -24,7 +24,7 @@
io.helidon.messaging
helidon-messaging-connectors-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.messaging.mock
diff --git a/messaging/connectors/pom.xml b/messaging/connectors/pom.xml
index cd3c9005ce7..a92c8d728f1 100644
--- a/messaging/connectors/pom.xml
+++ b/messaging/connectors/pom.xml
@@ -23,7 +23,7 @@
io.helidon.messaging
helidon-messaging-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-messaging-connectors-project
Helidon Messaging Connectors Project
diff --git a/messaging/connectors/wls-jms/pom.xml b/messaging/connectors/wls-jms/pom.xml
index 683b46c0ea8..f26671f41c2 100644
--- a/messaging/connectors/wls-jms/pom.xml
+++ b/messaging/connectors/wls-jms/pom.xml
@@ -24,7 +24,7 @@
io.helidon.messaging
helidon-messaging-connectors-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.messaging.wls-jms
diff --git a/messaging/messaging/pom.xml b/messaging/messaging/pom.xml
index 46e0bf23b26..8700b382cf3 100644
--- a/messaging/messaging/pom.xml
+++ b/messaging/messaging/pom.xml
@@ -23,7 +23,7 @@
io.helidon.messaging
helidon-messaging-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-messaging
diff --git a/messaging/pom.xml b/messaging/pom.xml
index c4a01b16b83..0d806b06b95 100644
--- a/messaging/pom.xml
+++ b/messaging/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.messaging
helidon-messaging-project
diff --git a/metrics/api/pom.xml b/metrics/api/pom.xml
index 7f6615cd385..e6621acc602 100644
--- a/metrics/api/pom.xml
+++ b/metrics/api/pom.xml
@@ -21,7 +21,7 @@
io.helidon.metrics
helidon-metrics-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/metrics/metrics/pom.xml b/metrics/metrics/pom.xml
index 790e7d57f0e..a57c0ebb0b9 100644
--- a/metrics/metrics/pom.xml
+++ b/metrics/metrics/pom.xml
@@ -24,7 +24,7 @@
io.helidon.metrics
helidon-metrics-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-metrics
Helidon Metrics
diff --git a/metrics/pom.xml b/metrics/pom.xml
index 2ea42490a55..5abbf1e899f 100644
--- a/metrics/pom.xml
+++ b/metrics/pom.xml
@@ -22,7 +22,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.metrics
diff --git a/metrics/prometheus/pom.xml b/metrics/prometheus/pom.xml
index 0f45bcd2722..e5e84e49123 100644
--- a/metrics/prometheus/pom.xml
+++ b/metrics/prometheus/pom.xml
@@ -24,7 +24,7 @@
io.helidon.metrics
helidon-metrics-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-metrics-prometheus
Helidon Metrics Prometheus
diff --git a/metrics/service-api/pom.xml b/metrics/service-api/pom.xml
index ede23a62e66..2c84aa6b611 100644
--- a/metrics/service-api/pom.xml
+++ b/metrics/service-api/pom.xml
@@ -24,7 +24,7 @@
io.helidon.metrics
helidon-metrics-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-metrics-service-api
Helidon Metrics Web Support API
diff --git a/metrics/trace-exemplar/pom.xml b/metrics/trace-exemplar/pom.xml
index cca8f770d24..7d838f0c0fb 100644
--- a/metrics/trace-exemplar/pom.xml
+++ b/metrics/trace-exemplar/pom.xml
@@ -23,7 +23,7 @@
helidon-metrics-project
io.helidon.metrics
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/access-log/pom.xml b/microprofile/access-log/pom.xml
index 9d9bec588a8..80481954bbe 100644
--- a/microprofile/access-log/pom.xml
+++ b/microprofile/access-log/pom.xml
@@ -23,7 +23,7 @@
helidon-microprofile-project
io.helidon.microprofile
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/bean-validation/pom.xml b/microprofile/bean-validation/pom.xml
index 42976de7743..40b210b05dd 100644
--- a/microprofile/bean-validation/pom.xml
+++ b/microprofile/bean-validation/pom.xml
@@ -21,7 +21,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.bean-validation
helidon-microprofile-bean-validation
diff --git a/microprofile/bundles/helidon-microprofile-core/pom.xml b/microprofile/bundles/helidon-microprofile-core/pom.xml
index 049a217d589..3d287907b7f 100644
--- a/microprofile/bundles/helidon-microprofile-core/pom.xml
+++ b/microprofile/bundles/helidon-microprofile-core/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile.bundles
bundles-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-core
Helidon Microprofile Core Bundle
diff --git a/microprofile/bundles/helidon-microprofile/pom.xml b/microprofile/bundles/helidon-microprofile/pom.xml
index 7c8e9c16880..f1abb41e6b3 100644
--- a/microprofile/bundles/helidon-microprofile/pom.xml
+++ b/microprofile/bundles/helidon-microprofile/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile.bundles
bundles-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile
Helidon Microprofile Full Bundle
diff --git a/microprofile/bundles/pom.xml b/microprofile/bundles/pom.xml
index 6bdab781513..5f89ea62ab8 100644
--- a/microprofile/bundles/pom.xml
+++ b/microprofile/bundles/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.microprofile.bundles
diff --git a/microprofile/cdi/pom.xml b/microprofile/cdi/pom.xml
index a978b25877a..ec3bc73cf12 100644
--- a/microprofile/cdi/pom.xml
+++ b/microprofile/cdi/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.cdi
diff --git a/microprofile/config/pom.xml b/microprofile/config/pom.xml
index c0ab2fd5f76..5e8852d2304 100644
--- a/microprofile/config/pom.xml
+++ b/microprofile/config/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.config
helidon-microprofile-config
diff --git a/microprofile/cors/pom.xml b/microprofile/cors/pom.xml
index 3be2374685a..05d05e9037f 100644
--- a/microprofile/cors/pom.xml
+++ b/microprofile/cors/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-cors
diff --git a/microprofile/fault-tolerance/pom.xml b/microprofile/fault-tolerance/pom.xml
index b729cbc48d0..d98dcb546d0 100644
--- a/microprofile/fault-tolerance/pom.xml
+++ b/microprofile/fault-tolerance/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-fault-tolerance
Helidon Microprofile Fault Tolerance
diff --git a/microprofile/graphql/pom.xml b/microprofile/graphql/pom.xml
index 2fecb254771..44a1e4eae64 100644
--- a/microprofile/graphql/pom.xml
+++ b/microprofile/graphql/pom.xml
@@ -20,7 +20,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/graphql/server/pom.xml b/microprofile/graphql/server/pom.xml
index 1c8ffdf192b..1504b8f68eb 100644
--- a/microprofile/graphql/server/pom.xml
+++ b/microprofile/graphql/server/pom.xml
@@ -20,7 +20,7 @@
io.helidon.microprofile.graphql
helidon-microprofile-graphql
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/grpc/client/pom.xml b/microprofile/grpc/client/pom.xml
index dbfb2163e8f..f816dd9a60a 100644
--- a/microprofile/grpc/client/pom.xml
+++ b/microprofile/grpc/client/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.grpc
helidon-microprofile-grpc
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-grpc-client
diff --git a/microprofile/grpc/core/pom.xml b/microprofile/grpc/core/pom.xml
index f711347c65d..b9d96d4f6d9 100644
--- a/microprofile/grpc/core/pom.xml
+++ b/microprofile/grpc/core/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.grpc
helidon-microprofile-grpc
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-grpc-core
diff --git a/microprofile/grpc/metrics/pom.xml b/microprofile/grpc/metrics/pom.xml
index 4c1fdd09de1..b9d8a244147 100644
--- a/microprofile/grpc/metrics/pom.xml
+++ b/microprofile/grpc/metrics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.grpc
helidon-microprofile-grpc
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-grpc-metrics
diff --git a/microprofile/grpc/pom.xml b/microprofile/grpc/pom.xml
index 6e8401d0f00..6c395b122e6 100644
--- a/microprofile/grpc/pom.xml
+++ b/microprofile/grpc/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.grpc
diff --git a/microprofile/grpc/server/pom.xml b/microprofile/grpc/server/pom.xml
index c3d2789767c..10de5204161 100644
--- a/microprofile/grpc/server/pom.xml
+++ b/microprofile/grpc/server/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.grpc
helidon-microprofile-grpc
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-grpc-server
diff --git a/microprofile/health/pom.xml b/microprofile/health/pom.xml
index 8edca810242..a031a09ef73 100644
--- a/microprofile/health/pom.xml
+++ b/microprofile/health/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.health
helidon-microprofile-health
diff --git a/microprofile/jwt-auth/pom.xml b/microprofile/jwt-auth/pom.xml
index b8635a399cb..ecd2d842f9c 100644
--- a/microprofile/jwt-auth/pom.xml
+++ b/microprofile/jwt-auth/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.jwt
diff --git a/microprofile/lra/jax-rs/pom.xml b/microprofile/lra/jax-rs/pom.xml
index 3fe88f55f81..7d8b06fc990 100644
--- a/microprofile/lra/jax-rs/pom.xml
+++ b/microprofile/lra/jax-rs/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.lra
helidon-microprofile-lra-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-lra
diff --git a/microprofile/lra/pom.xml b/microprofile/lra/pom.xml
index 06f11d761cd..42e51d22eaf 100644
--- a/microprofile/lra/pom.xml
+++ b/microprofile/lra/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.lra
diff --git a/microprofile/messaging/core/pom.xml b/microprofile/messaging/core/pom.xml
index c0b4b2e6af9..11c1679c982 100644
--- a/microprofile/messaging/core/pom.xml
+++ b/microprofile/messaging/core/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.messaging
helidon-microprofile-messaging-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-messaging
diff --git a/microprofile/messaging/health/pom.xml b/microprofile/messaging/health/pom.xml
index 185e694ae3a..fc19993b3a0 100644
--- a/microprofile/messaging/health/pom.xml
+++ b/microprofile/messaging/health/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.messaging
helidon-microprofile-messaging-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-messaging-health
diff --git a/microprofile/messaging/metrics/pom.xml b/microprofile/messaging/metrics/pom.xml
index 9d71c369ad5..29a46272746 100644
--- a/microprofile/messaging/metrics/pom.xml
+++ b/microprofile/messaging/metrics/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.messaging
helidon-microprofile-messaging-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-messaging-metrics
diff --git a/microprofile/messaging/pom.xml b/microprofile/messaging/pom.xml
index 3790cccd3c2..e434252f82f 100644
--- a/microprofile/messaging/pom.xml
+++ b/microprofile/messaging/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.messaging
diff --git a/microprofile/metrics/pom.xml b/microprofile/metrics/pom.xml
index ac4ea56a90b..f107ec62ec6 100644
--- a/microprofile/metrics/pom.xml
+++ b/microprofile/metrics/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.metrics
helidon-microprofile-metrics
diff --git a/microprofile/oidc/pom.xml b/microprofile/oidc/pom.xml
index 81a159c8803..ebd66de3ef8 100644
--- a/microprofile/oidc/pom.xml
+++ b/microprofile/oidc/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-oidc
Helidon Microprofile Security OIDC Integration
diff --git a/microprofile/openapi/pom.xml b/microprofile/openapi/pom.xml
index 74c121654d1..f28526e76d1 100644
--- a/microprofile/openapi/pom.xml
+++ b/microprofile/openapi/pom.xml
@@ -21,7 +21,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.openapi
helidon-microprofile-openapi
diff --git a/microprofile/pom.xml b/microprofile/pom.xml
index 542d9dfcb10..c39f9a766fe 100644
--- a/microprofile/pom.xml
+++ b/microprofile/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.microprofile
diff --git a/microprofile/reactive-streams/pom.xml b/microprofile/reactive-streams/pom.xml
index 768667a8d6f..30bf66c2aa9 100644
--- a/microprofile/reactive-streams/pom.xml
+++ b/microprofile/reactive-streams/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.reactive-streams
diff --git a/microprofile/rest-client/pom.xml b/microprofile/rest-client/pom.xml
index e55c8f30d24..201a1d66375 100644
--- a/microprofile/rest-client/pom.xml
+++ b/microprofile/rest-client/pom.xml
@@ -23,7 +23,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.rest-client
diff --git a/microprofile/scheduling/pom.xml b/microprofile/scheduling/pom.xml
index 46a0cf8f3c7..c4d5e0a77b4 100644
--- a/microprofile/scheduling/pom.xml
+++ b/microprofile/scheduling/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.scheduling
diff --git a/microprofile/security/pom.xml b/microprofile/security/pom.xml
index 24acda0f689..7def4148df5 100644
--- a/microprofile/security/pom.xml
+++ b/microprofile/security/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-security
Helidon Microprofile Security Integration
diff --git a/microprofile/server/pom.xml b/microprofile/server/pom.xml
index 001c7d636bb..faf5d490e50 100644
--- a/microprofile/server/pom.xml
+++ b/microprofile/server/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.server
helidon-microprofile-server
diff --git a/microprofile/tests/arquillian/pom.xml b/microprofile/tests/arquillian/pom.xml
index 30b3e68d890..62dacc3882c 100644
--- a/microprofile/tests/arquillian/pom.xml
+++ b/microprofile/tests/arquillian/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile.tests
tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-arquillian
Helidon Microprofile Arquillian Integration
diff --git a/microprofile/tests/junit5-tests/pom.xml b/microprofile/tests/junit5-tests/pom.xml
index 1dd7c16f27b..fd0238ca95a 100644
--- a/microprofile/tests/junit5-tests/pom.xml
+++ b/microprofile/tests/junit5-tests/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.tests
tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-tests-junit5-tests
diff --git a/microprofile/tests/junit5/pom.xml b/microprofile/tests/junit5/pom.xml
index b5b3074234c..4ec69cc497e 100644
--- a/microprofile/tests/junit5/pom.xml
+++ b/microprofile/tests/junit5/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../pom.xml
diff --git a/microprofile/tests/pom.xml b/microprofile/tests/pom.xml
index 982a455a888..429d9802c8f 100644
--- a/microprofile/tests/pom.xml
+++ b/microprofile/tests/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.microprofile.tests
diff --git a/microprofile/tests/tck/pom.xml b/microprofile/tests/tck/pom.xml
index 3764ac8e0b4..25d9eb1f84a 100644
--- a/microprofile/tests/tck/pom.xml
+++ b/microprofile/tests/tck/pom.xml
@@ -23,7 +23,7 @@
io.helidon.microprofile.tests
tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/microprofile/tests/tck/tck-config/pom.xml b/microprofile/tests/tck/tck-config/pom.xml
index e762e09c1d0..3de1b23dcce 100644
--- a/microprofile/tests/tck/tck-config/pom.xml
+++ b/microprofile/tests/tck/tck-config/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-config
Helidon Microprofile Tests TCK Config
diff --git a/microprofile/tests/tck/tck-fault-tolerance/pom.xml b/microprofile/tests/tck/tck-fault-tolerance/pom.xml
index a2af3e549ff..bb38fd8bcb2 100644
--- a/microprofile/tests/tck/tck-fault-tolerance/pom.xml
+++ b/microprofile/tests/tck/tck-fault-tolerance/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-fault-tolerance
Helidon Microprofile Tests TCK Fault Tolerance
diff --git a/microprofile/tests/tck/tck-graphql/pom.xml b/microprofile/tests/tck/tck-graphql/pom.xml
index 9e2f56efc1c..03b0b29d695 100644
--- a/microprofile/tests/tck/tck-graphql/pom.xml
+++ b/microprofile/tests/tck/tck-graphql/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-graphql
Helidon Microprofile Tests TCK GraphQL
diff --git a/microprofile/tests/tck/tck-health/pom.xml b/microprofile/tests/tck/tck-health/pom.xml
index 7b3c3a0eaaf..f9f7fada177 100644
--- a/microprofile/tests/tck/tck-health/pom.xml
+++ b/microprofile/tests/tck/tck-health/pom.xml
@@ -23,7 +23,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/tests/tck/tck-jwt-auth/pom.xml b/microprofile/tests/tck/tck-jwt-auth/pom.xml
index 543219714a2..88a2e2df813 100644
--- a/microprofile/tests/tck/tck-jwt-auth/pom.xml
+++ b/microprofile/tests/tck/tck-jwt-auth/pom.xml
@@ -21,7 +21,7 @@
tck-project
io.helidon.microprofile.tests
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-jwt-auth
Helidon Microprofile Tests TCK JWT-Auth
diff --git a/microprofile/tests/tck/tck-lra/pom.xml b/microprofile/tests/tck/tck-lra/pom.xml
index bae3dcb9bb5..69c43e1292d 100644
--- a/microprofile/tests/tck/tck-lra/pom.xml
+++ b/microprofile/tests/tck/tck-lra/pom.xml
@@ -21,7 +21,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-lra
diff --git a/microprofile/tests/tck/tck-messaging/pom.xml b/microprofile/tests/tck/tck-messaging/pom.xml
index ea1503cc4af..970dcdd4612 100644
--- a/microprofile/tests/tck/tck-messaging/pom.xml
+++ b/microprofile/tests/tck/tck-messaging/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-messaging
Helidon Microprofile Tests TCK Messaging
diff --git a/microprofile/tests/tck/tck-metrics/pom.xml b/microprofile/tests/tck/tck-metrics/pom.xml
index 1c98d923d7b..59082ccde20 100644
--- a/microprofile/tests/tck/tck-metrics/pom.xml
+++ b/microprofile/tests/tck/tck-metrics/pom.xml
@@ -24,7 +24,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-metrics
Helidon Microprofile Tests TCK Metrics
diff --git a/microprofile/tests/tck/tck-openapi/pom.xml b/microprofile/tests/tck/tck-openapi/pom.xml
index 3fd81045d37..96fe6d2064b 100644
--- a/microprofile/tests/tck/tck-openapi/pom.xml
+++ b/microprofile/tests/tck/tck-openapi/pom.xml
@@ -23,7 +23,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/tests/tck/tck-opentracing/pom.xml b/microprofile/tests/tck/tck-opentracing/pom.xml
index 97d832aae06..a13d1137957 100644
--- a/microprofile/tests/tck/tck-opentracing/pom.xml
+++ b/microprofile/tests/tck/tck-opentracing/pom.xml
@@ -22,7 +22,7 @@
tck-project
io.helidon.microprofile.tests
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-opentracing
Helidon Microprofile Tests TCK Opentracing
diff --git a/microprofile/tests/tck/tck-reactive-operators/pom.xml b/microprofile/tests/tck/tck-reactive-operators/pom.xml
index ea7772ca438..40d6653a0a6 100644
--- a/microprofile/tests/tck/tck-reactive-operators/pom.xml
+++ b/microprofile/tests/tck/tck-reactive-operators/pom.xml
@@ -23,7 +23,7 @@
io.helidon.microprofile.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
tck-reactive-operators
Helidon Microprofile Tests TCK Reactive Streams Operators
diff --git a/microprofile/tests/tck/tck-rest-client/pom.xml b/microprofile/tests/tck/tck-rest-client/pom.xml
index 6bb1a07bc8f..cdf1e767913 100644
--- a/microprofile/tests/tck/tck-rest-client/pom.xml
+++ b/microprofile/tests/tck/tck-rest-client/pom.xml
@@ -21,7 +21,7 @@
tck-project
io.helidon.microprofile.tests
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/tests/testng-tests/pom.xml b/microprofile/tests/testng-tests/pom.xml
index c18e0b310b6..ae500d6bfc9 100644
--- a/microprofile/tests/testng-tests/pom.xml
+++ b/microprofile/tests/testng-tests/pom.xml
@@ -21,7 +21,7 @@
io.helidon.microprofile.tests
tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-microprofile-tests-testng-tests
diff --git a/microprofile/tests/testng/pom.xml b/microprofile/tests/testng/pom.xml
index a8498fec5b5..104d56b2a5d 100644
--- a/microprofile/tests/testng/pom.xml
+++ b/microprofile/tests/testng/pom.xml
@@ -20,7 +20,7 @@
tests-project
io.helidon.microprofile.tests
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/tracing/pom.xml b/microprofile/tracing/pom.xml
index 11a316dab1f..e7cfd298e5b 100644
--- a/microprofile/tracing/pom.xml
+++ b/microprofile/tracing/pom.xml
@@ -22,7 +22,7 @@
helidon-microprofile-project
io.helidon.microprofile
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.tracing
helidon-microprofile-tracing
diff --git a/microprofile/websocket/pom.xml b/microprofile/websocket/pom.xml
index bceaf4a8a93..ecdba560bc7 100644
--- a/microprofile/websocket/pom.xml
+++ b/microprofile/websocket/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.microprofile.websocket
diff --git a/microprofile/weld/pom.xml b/microprofile/weld/pom.xml
index 03fbde7d63f..03c0f0afde3 100644
--- a/microprofile/weld/pom.xml
+++ b/microprofile/weld/pom.xml
@@ -22,7 +22,7 @@
io.helidon.microprofile
helidon-microprofile-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/weld/weld-core-impl/pom.xml b/microprofile/weld/weld-core-impl/pom.xml
index 5dfc9a95fbf..73ea819aed8 100644
--- a/microprofile/weld/weld-core-impl/pom.xml
+++ b/microprofile/weld/weld-core-impl/pom.xml
@@ -21,7 +21,7 @@
io.helidon.microprofile.weld
helidon-microprofile-weld-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/microprofile/weld/weld-se-core/pom.xml b/microprofile/weld/weld-se-core/pom.xml
index e4c8da8fefc..8c8cacf8ac0 100644
--- a/microprofile/weld/weld-se-core/pom.xml
+++ b/microprofile/weld/weld-se-core/pom.xml
@@ -21,7 +21,7 @@
io.helidon.microprofile.weld
helidon-microprofile-weld-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/openapi/pom.xml b/openapi/pom.xml
index 4cac584029d..fa9c42a994f 100644
--- a/openapi/pom.xml
+++ b/openapi/pom.xml
@@ -21,7 +21,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.openapi
diff --git a/parent/pom.xml b/parent/pom.xml
index c7b5f13fd51..e3e8849939a 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -22,7 +22,7 @@
4.0.0
io.helidon
helidon-parent
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
Helidon Parent
diff --git a/pom.xml b/pom.xml
index 38f60f59ab1..b87eec169d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-dependencies
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
./dependencies/pom.xml
helidon-project
diff --git a/scheduling/pom.xml b/scheduling/pom.xml
index d3422e498ba..d5707da2a13 100644
--- a/scheduling/pom.xml
+++ b/scheduling/pom.xml
@@ -22,7 +22,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.scheduling
diff --git a/security/abac/policy-el/pom.xml b/security/abac/policy-el/pom.xml
index 795eed6e504..a77045be4a3 100644
--- a/security/abac/policy-el/pom.xml
+++ b/security/abac/policy-el/pom.xml
@@ -23,7 +23,7 @@
io.helidon.security.abac
helidon-security-abac-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
helidon-security-abac-policy-el
diff --git a/security/abac/policy/pom.xml b/security/abac/policy/pom.xml
index f98d22c7309..c9cc2729462 100644
--- a/security/abac/policy/pom.xml
+++ b/security/abac/policy/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.abac
helidon-security-abac-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-abac-policy
Helidon Security Validators Policy
diff --git a/security/abac/pom.xml b/security/abac/pom.xml
index a2306af0f4b..8797a0da5e1 100644
--- a/security/abac/pom.xml
+++ b/security/abac/pom.xml
@@ -23,7 +23,7 @@
io.helidon.security
helidon-security-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/security/abac/role/pom.xml b/security/abac/role/pom.xml
index 4b9b8f5e1b9..38351873598 100644
--- a/security/abac/role/pom.xml
+++ b/security/abac/role/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.abac
helidon-security-abac-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-abac-role
Helidon Security Validators Role
diff --git a/security/abac/scope/pom.xml b/security/abac/scope/pom.xml
index a3f6427bda7..f8c4fb9f695 100644
--- a/security/abac/scope/pom.xml
+++ b/security/abac/scope/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.abac
helidon-security-abac-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-abac-scope
Helidon Security Validators Scope
diff --git a/security/abac/time/pom.xml b/security/abac/time/pom.xml
index a1ee76d2214..dae8add5790 100644
--- a/security/abac/time/pom.xml
+++ b/security/abac/time/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.abac
helidon-security-abac-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-abac-time
Helidon Security Validators Time
diff --git a/security/annotations/pom.xml b/security/annotations/pom.xml
index e9918e7c3a9..897a6037ae2 100644
--- a/security/annotations/pom.xml
+++ b/security/annotations/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security
helidon-security-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-annotations
Helidon Security Integration Annotations
diff --git a/security/integration/common/pom.xml b/security/integration/common/pom.xml
index df52ba3ac74..8cf5b026546 100644
--- a/security/integration/common/pom.xml
+++ b/security/integration/common/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.integration
helidon-security-integration-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-integration-common
Helidon Security Integration Common
diff --git a/security/integration/grpc/pom.xml b/security/integration/grpc/pom.xml
index eb78255472a..1b12417e0e0 100644
--- a/security/integration/grpc/pom.xml
+++ b/security/integration/grpc/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.integration
helidon-security-integration-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-integration-grpc
Helidon Security Integration gRPC Server
diff --git a/security/integration/jersey-client/pom.xml b/security/integration/jersey-client/pom.xml
index 801e1476fc8..81587f50a59 100644
--- a/security/integration/jersey-client/pom.xml
+++ b/security/integration/jersey-client/pom.xml
@@ -22,7 +22,7 @@
io.helidon.security.integration
helidon-security-integration-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-integration-jersey-client
Helidon Security Integration Jersey Client
diff --git a/security/integration/jersey/pom.xml b/security/integration/jersey/pom.xml
index 6faef293100..77b0a42cdea 100644
--- a/security/integration/jersey/pom.xml
+++ b/security/integration/jersey/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.integration
helidon-security-integration-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-integration-jersey
Helidon Security Integration Jersey
diff --git a/security/integration/pom.xml b/security/integration/pom.xml
index 66313c0237b..5a997a74916 100644
--- a/security/integration/pom.xml
+++ b/security/integration/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security
helidon-security-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/security/integration/webserver/pom.xml b/security/integration/webserver/pom.xml
index c215cf7434b..50f6669dd7e 100644
--- a/security/integration/webserver/pom.xml
+++ b/security/integration/webserver/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.integration
helidon-security-integration-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-integration-webserver
Helidon Security Integration Webserver
diff --git a/security/jwt/pom.xml b/security/jwt/pom.xml
index 0e620c5f37b..34ae80b3fbe 100644
--- a/security/jwt/pom.xml
+++ b/security/jwt/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security
helidon-security-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-jwt
Helidon Security JWT
diff --git a/security/pom.xml b/security/pom.xml
index 2b6c87fa668..ade38cf6ff2 100644
--- a/security/pom.xml
+++ b/security/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.security
diff --git a/security/providers/abac/pom.xml b/security/providers/abac/pom.xml
index 9602ecfc66b..0d247153983 100644
--- a/security/providers/abac/pom.xml
+++ b/security/providers/abac/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-abac
Helidon Security Providers ABAC
diff --git a/security/providers/common/pom.xml b/security/providers/common/pom.xml
index e8ab3a8872e..8e90c9e3337 100644
--- a/security/providers/common/pom.xml
+++ b/security/providers/common/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-common
Helidon Security Providers Common
diff --git a/security/providers/config-vault/pom.xml b/security/providers/config-vault/pom.xml
index 2b0cd39ddbb..de6d13fd29a 100644
--- a/security/providers/config-vault/pom.xml
+++ b/security/providers/config-vault/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-config-vault
Helidon Security Providers Config Vault
diff --git a/security/providers/google-login/pom.xml b/security/providers/google-login/pom.xml
index 8a8d461df7f..a7faac014c7 100644
--- a/security/providers/google-login/pom.xml
+++ b/security/providers/google-login/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-google-login
Helidon Security Providers Google Login
diff --git a/security/providers/header/pom.xml b/security/providers/header/pom.xml
index b2be8fb4504..245d4f0495f 100644
--- a/security/providers/header/pom.xml
+++ b/security/providers/header/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-header
Helidon Security Providers Header authentication
diff --git a/security/providers/http-auth/pom.xml b/security/providers/http-auth/pom.xml
index 41f244e60f4..e59886c7568 100644
--- a/security/providers/http-auth/pom.xml
+++ b/security/providers/http-auth/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-http-auth
Helidon Security Providers HTTP Authentication
diff --git a/security/providers/http-sign/pom.xml b/security/providers/http-sign/pom.xml
index d8c457d3902..3ebe331629c 100644
--- a/security/providers/http-sign/pom.xml
+++ b/security/providers/http-sign/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-http-sign
Helidon Security Providers HTTP Signature
diff --git a/security/providers/idcs-mapper/pom.xml b/security/providers/idcs-mapper/pom.xml
index fa99c234f36..1945ddc31cd 100644
--- a/security/providers/idcs-mapper/pom.xml
+++ b/security/providers/idcs-mapper/pom.xml
@@ -21,7 +21,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/security/providers/jwt/pom.xml b/security/providers/jwt/pom.xml
index 9635a452c99..3cf54045010 100644
--- a/security/providers/jwt/pom.xml
+++ b/security/providers/jwt/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-providers-jwt
Helidon Security Providers JWT
diff --git a/security/providers/oidc-common/pom.xml b/security/providers/oidc-common/pom.xml
index cce8234b578..eadfbb5130d 100644
--- a/security/providers/oidc-common/pom.xml
+++ b/security/providers/oidc-common/pom.xml
@@ -21,7 +21,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
helidon-security-providers-oidc-common
diff --git a/security/providers/oidc/pom.xml b/security/providers/oidc/pom.xml
index 7644b03c229..a94a3509288 100644
--- a/security/providers/oidc/pom.xml
+++ b/security/providers/oidc/pom.xml
@@ -23,7 +23,7 @@
io.helidon.security.providers
helidon-security-providers-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
helidon-security-providers-oidc
diff --git a/security/providers/pom.xml b/security/providers/pom.xml
index fa6e289a33f..b217952e99a 100644
--- a/security/providers/pom.xml
+++ b/security/providers/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security
helidon-security-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.security.providers
helidon-security-providers-project
diff --git a/security/security/pom.xml b/security/security/pom.xml
index 021faae14c3..8fb905af44a 100644
--- a/security/security/pom.xml
+++ b/security/security/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security
helidon-security-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security
Helidon Security
diff --git a/security/util/pom.xml b/security/util/pom.xml
index e4b9bae4e4a..cbda0035e8f 100644
--- a/security/util/pom.xml
+++ b/security/util/pom.xml
@@ -24,7 +24,7 @@
io.helidon.security
helidon-security-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-security-util
Helidon Security Utilities
diff --git a/service-common/pom.xml b/service-common/pom.xml
index 0ba3b1207c2..a5f779d6557 100644
--- a/service-common/pom.xml
+++ b/service-common/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.service-common
diff --git a/service-common/rest-cdi/pom.xml b/service-common/rest-cdi/pom.xml
index 1724cb25bad..0a741db80b5 100644
--- a/service-common/rest-cdi/pom.xml
+++ b/service-common/rest-cdi/pom.xml
@@ -20,7 +20,7 @@
io.helidon.service-common
helidon-service-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/service-common/rest/pom.xml b/service-common/rest/pom.xml
index 5125163aa55..3e17c6f28b2 100644
--- a/service-common/rest/pom.xml
+++ b/service-common/rest/pom.xml
@@ -20,7 +20,7 @@
io.helidon.service-common
helidon-service-common-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/apps/bookstore/bookstore-mp/pom.xml b/tests/apps/bookstore/bookstore-mp/pom.xml
index ab37cc744e2..c8f4d78f711 100644
--- a/tests/apps/bookstore/bookstore-mp/pom.xml
+++ b/tests/apps/bookstore/bookstore-mp/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.tests.apps.bookstore.bookstore-mp
diff --git a/tests/apps/bookstore/bookstore-se/pom.xml b/tests/apps/bookstore/bookstore-se/pom.xml
index 8e24e9f6f3b..bfa7da0af5b 100644
--- a/tests/apps/bookstore/bookstore-se/pom.xml
+++ b/tests/apps/bookstore/bookstore-se/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
io.helidon.tests.apps.bookstore.bookstore-se
diff --git a/tests/apps/bookstore/common/pom.xml b/tests/apps/bookstore/common/pom.xml
index 4363a9f0c9b..09e8a97fccd 100644
--- a/tests/apps/bookstore/common/pom.xml
+++ b/tests/apps/bookstore/common/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
io.helidon.tests.apps.bookstore.common
diff --git a/tests/apps/bookstore/pom.xml b/tests/apps/bookstore/pom.xml
index 4704526fd7c..ef2ba354b3e 100644
--- a/tests/apps/bookstore/pom.xml
+++ b/tests/apps/bookstore/pom.xml
@@ -24,7 +24,7 @@
io.helidon.tests.apps
helidon-tests-apps-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.apps.bookstore
diff --git a/tests/apps/pom.xml b/tests/apps/pom.xml
index 104eda103ea..14a1fa97ad3 100644
--- a/tests/apps/pom.xml
+++ b/tests/apps/pom.xml
@@ -24,7 +24,7 @@
io.helidon.tests
helidon-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.apps
diff --git a/tests/functional/bookstore/pom.xml b/tests/functional/bookstore/pom.xml
index efaead8792d..846d1ad9ec1 100644
--- a/tests/functional/bookstore/pom.xml
+++ b/tests/functional/bookstore/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tests.functional
helidon-tests-functional-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.functional.bookstore
helidon-tests-functional-bookstore
diff --git a/tests/functional/config-profiles/pom.xml b/tests/functional/config-profiles/pom.xml
index db98c1250f7..97fa9497508 100644
--- a/tests/functional/config-profiles/pom.xml
+++ b/tests/functional/config-profiles/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.functional
helidon-tests-functional-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.functional.configprofile
helidon-tests-functional-configprofile
diff --git a/tests/functional/context-propagation/pom.xml b/tests/functional/context-propagation/pom.xml
index 735dc5fc0bd..85a9c0fde8b 100644
--- a/tests/functional/context-propagation/pom.xml
+++ b/tests/functional/context-propagation/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-context-propagation
diff --git a/tests/functional/jax-rs-multiple-apps/pom.xml b/tests/functional/jax-rs-multiple-apps/pom.xml
index 2761a12db9b..8c8df7e96a1 100644
--- a/tests/functional/jax-rs-multiple-apps/pom.xml
+++ b/tests/functional/jax-rs-multiple-apps/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-jax-rs-multiple-apps
diff --git a/tests/functional/jax-rs-subresource/pom.xml b/tests/functional/jax-rs-subresource/pom.xml
index 0511c5c06c6..919f646bfcc 100644
--- a/tests/functional/jax-rs-subresource/pom.xml
+++ b/tests/functional/jax-rs-subresource/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-jax-rs-subresource
Helidon Functional Test: JAX-RS Subresources
diff --git a/tests/functional/mp-compression/pom.xml b/tests/functional/mp-compression/pom.xml
index 3208d8e50a3..19e69f54383 100644
--- a/tests/functional/mp-compression/pom.xml
+++ b/tests/functional/mp-compression/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-mp-compression
Helidon Functional Test: HTTP compression
diff --git a/tests/functional/mp-synthetic-app/pom.xml b/tests/functional/mp-synthetic-app/pom.xml
index f485b80d7fa..2408836f5c5 100644
--- a/tests/functional/mp-synthetic-app/pom.xml
+++ b/tests/functional/mp-synthetic-app/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-mp-synthetic-app
Helidon Functional Test: MP Synthetic Application
diff --git a/tests/functional/multiport/pom.xml b/tests/functional/multiport/pom.xml
index 9d2fe2978ed..180ae239f76 100644
--- a/tests/functional/multiport/pom.xml
+++ b/tests/functional/multiport/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-multiport
Helidon Functional Test: Multiport with MP
diff --git a/tests/functional/param-converter-provider/pom.xml b/tests/functional/param-converter-provider/pom.xml
index 5f385da4938..83f8947cf5e 100644
--- a/tests/functional/param-converter-provider/pom.xml
+++ b/tests/functional/param-converter-provider/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-param-converter-provider
diff --git a/tests/functional/pom.xml b/tests/functional/pom.xml
index 199d6503cba..05beb975384 100644
--- a/tests/functional/pom.xml
+++ b/tests/functional/pom.xml
@@ -24,7 +24,7 @@
io.helidon.tests
helidon-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.functional
diff --git a/tests/functional/request-scope-cdi/pom.xml b/tests/functional/request-scope-cdi/pom.xml
index 8cfb742d3c9..1e352e4ee13 100644
--- a/tests/functional/request-scope-cdi/pom.xml
+++ b/tests/functional/request-scope-cdi/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-request-scope-cdi
diff --git a/tests/functional/request-scope/pom.xml b/tests/functional/request-scope/pom.xml
index b0156f9ba3d..c29db4cdbe2 100644
--- a/tests/functional/request-scope/pom.xml
+++ b/tests/functional/request-scope/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-functional-project
io.helidon.tests.functional
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-functional-request-scope
diff --git a/tests/integration/config/gh-2171-yml/pom.xml b/tests/integration/config/gh-2171-yml/pom.xml
index 33d99f387e4..4c6a893c1f6 100644
--- a/tests/integration/config/gh-2171-yml/pom.xml
+++ b/tests/integration/config/gh-2171-yml/pom.xml
@@ -20,7 +20,7 @@
io.helidon.tests.integration
helidon-tests-integration-config
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/config/gh-2171/pom.xml b/tests/integration/config/gh-2171/pom.xml
index fd6b12dc072..98fe6f3cf9d 100644
--- a/tests/integration/config/gh-2171/pom.xml
+++ b/tests/integration/config/gh-2171/pom.xml
@@ -20,7 +20,7 @@
io.helidon.tests.integration
helidon-tests-integration-config
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/config/gh-4375/pom.xml b/tests/integration/config/gh-4375/pom.xml
index 78956514533..495af9475a2 100644
--- a/tests/integration/config/gh-4375/pom.xml
+++ b/tests/integration/config/gh-4375/pom.xml
@@ -24,7 +24,7 @@
io.helidon.tests.integration
helidon-tests-integration-config
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-config-gh-4375
diff --git a/tests/integration/config/hocon-mp/pom.xml b/tests/integration/config/hocon-mp/pom.xml
index 186a83a0a88..1fa84d7bb64 100644
--- a/tests/integration/config/hocon-mp/pom.xml
+++ b/tests/integration/config/hocon-mp/pom.xml
@@ -24,7 +24,7 @@
io.helidon.tests.integration
helidon-tests-integration-config
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-config-hocon-mp
diff --git a/tests/integration/config/pom.xml b/tests/integration/config/pom.xml
index 1c57f5448bb..269d6de9fec 100644
--- a/tests/integration/config/pom.xml
+++ b/tests/integration/config/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/tests/integration/dbclient/appl/pom.xml b/tests/integration/dbclient/appl/pom.xml
index e58c3bddea8..b4d8a86bb28 100644
--- a/tests/integration/dbclient/appl/pom.xml
+++ b/tests/integration/dbclient/appl/pom.xml
@@ -31,13 +31,13 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
io.helidon.tests.integration.dbclient
helidon-tests-integration-dbclient-appl
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
Integration Tests: DB Client Application
diff --git a/tests/integration/dbclient/common/pom.xml b/tests/integration/dbclient/common/pom.xml
index 0038ee7f1e7..bab5f083391 100644
--- a/tests/integration/dbclient/common/pom.xml
+++ b/tests/integration/dbclient/common/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.dbclient
helidon-tests-integration-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/dbclient/jdbc/pom.xml b/tests/integration/dbclient/jdbc/pom.xml
index a0394ad5412..9d241ef0878 100644
--- a/tests/integration/dbclient/jdbc/pom.xml
+++ b/tests/integration/dbclient/jdbc/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.dbclient
helidon-tests-integration-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/dbclient/mongodb/pom.xml b/tests/integration/dbclient/mongodb/pom.xml
index 37bef885450..d861059397a 100644
--- a/tests/integration/dbclient/mongodb/pom.xml
+++ b/tests/integration/dbclient/mongodb/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.dbclient
helidon-tests-integration-dbclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/dbclient/pom.xml b/tests/integration/dbclient/pom.xml
index 1073384ba2c..2bed8119657 100644
--- a/tests/integration/dbclient/pom.xml
+++ b/tests/integration/dbclient/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/gh-5792/pom.xml b/tests/integration/gh-5792/pom.xml
index 2aff5a52e19..237ea00fe16 100644
--- a/tests/integration/gh-5792/pom.xml
+++ b/tests/integration/gh-5792/pom.xml
@@ -21,12 +21,12 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/se/pom.xml
io.helidon.tests.integration
helidon-tests-integration-yaml-parsing
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.integration.yamlparsing.Main
diff --git a/tests/integration/health/mp-disabled/pom.xml b/tests/integration/health/mp-disabled/pom.xml
index 2cf0f781dd4..3bae0d94ac9 100644
--- a/tests/integration/health/mp-disabled/pom.xml
+++ b/tests/integration/health/mp-disabled/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.tests.integration.health
diff --git a/tests/integration/health/pom.xml b/tests/integration/health/pom.xml
index 5c1796f953c..8d41cf62540 100644
--- a/tests/integration/health/pom.xml
+++ b/tests/integration/health/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.integration.health
helidon-tests-integration-health-project
diff --git a/tests/integration/jep290/check_f_f_ok/pom.xml b/tests/integration/jep290/check_f_f_ok/pom.xml
index f2036619c42..6bb0255981a 100644
--- a/tests/integration/jep290/check_f_f_ok/pom.xml
+++ b/tests/integration/jep290/check_f_f_ok/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-check_f_f_ok
diff --git a/tests/integration/jep290/check_f_f_w/pom.xml b/tests/integration/jep290/check_f_f_w/pom.xml
index 1c86b3fc153..a75fe88cb75 100644
--- a/tests/integration/jep290/check_f_f_w/pom.xml
+++ b/tests/integration/jep290/check_f_f_w/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-check_f_f_w
diff --git a/tests/integration/jep290/check_f_p_ok/pom.xml b/tests/integration/jep290/check_f_p_ok/pom.xml
index c744a7c4b68..389995acf3a 100644
--- a/tests/integration/jep290/check_f_p_ok/pom.xml
+++ b/tests/integration/jep290/check_f_p_ok/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-check_f_p_ok
diff --git a/tests/integration/jep290/check_f_p_w/pom.xml b/tests/integration/jep290/check_f_p_w/pom.xml
index 4b5f796720e..4e5e26c876e 100644
--- a/tests/integration/jep290/check_f_p_w/pom.xml
+++ b/tests/integration/jep290/check_f_p_w/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-check_f_p_w
diff --git a/tests/integration/jep290/pom.xml b/tests/integration/jep290/pom.xml
index 90368009d68..88db408757a 100644
--- a/tests/integration/jep290/pom.xml
+++ b/tests/integration/jep290/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
diff --git a/tests/integration/jep290/server_and_custom/pom.xml b/tests/integration/jep290/server_and_custom/pom.xml
index 42e8b2dc02d..67d8adb520c 100644
--- a/tests/integration/jep290/server_and_custom/pom.xml
+++ b/tests/integration/jep290/server_and_custom/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-server-and-custom
diff --git a/tests/integration/jep290/set_c_f_c/pom.xml b/tests/integration/jep290/set_c_f_c/pom.xml
index 677b05b8129..f2ff5e61cd7 100644
--- a/tests/integration/jep290/set_c_f_c/pom.xml
+++ b/tests/integration/jep290/set_c_f_c/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-set_c_f_c
diff --git a/tests/integration/jep290/set_c_f_d/pom.xml b/tests/integration/jep290/set_c_f_d/pom.xml
index 54121136f9c..6393034112c 100644
--- a/tests/integration/jep290/set_c_f_d/pom.xml
+++ b/tests/integration/jep290/set_c_f_d/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-set_c_f_d
diff --git a/tests/integration/jep290/set_c_t_d/pom.xml b/tests/integration/jep290/set_c_t_d/pom.xml
index ebec326488f..f0074531698 100644
--- a/tests/integration/jep290/set_c_t_d/pom.xml
+++ b/tests/integration/jep290/set_c_t_d/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-set_c_t_d
diff --git a/tests/integration/jep290/set_f/pom.xml b/tests/integration/jep290/set_f/pom.xml
index 29c29b87307..4848e0166be 100644
--- a/tests/integration/jep290/set_f/pom.xml
+++ b/tests/integration/jep290/set_f/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-set_f
diff --git a/tests/integration/jep290/set_o/pom.xml b/tests/integration/jep290/set_o/pom.xml
index a73f32ca4c7..1527f73fd12 100644
--- a/tests/integration/jep290/set_o/pom.xml
+++ b/tests/integration/jep290/set_o/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jep290
helidon-tests-integration-jep290-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-jep290-set_o
diff --git a/tests/integration/jms/pom.xml b/tests/integration/jms/pom.xml
index 36c7a9e1c6f..347490559fb 100644
--- a/tests/integration/jms/pom.xml
+++ b/tests/integration/jms/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.integration.jms
diff --git a/tests/integration/jpa/appl/pom.xml b/tests/integration/jpa/appl/pom.xml
index a9f16e7f8be..77c0628cb87 100644
--- a/tests/integration/jpa/appl/pom.xml
+++ b/tests/integration/jpa/appl/pom.xml
@@ -23,7 +23,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
diff --git a/tests/integration/jpa/model/pom.xml b/tests/integration/jpa/model/pom.xml
index d91c9b71cd7..eb107f43a2c 100644
--- a/tests/integration/jpa/model/pom.xml
+++ b/tests/integration/jpa/model/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jpa
helidon-tests-integration-jpa-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/jpa/pom.xml b/tests/integration/jpa/pom.xml
index 91dcc664643..efc12516f56 100644
--- a/tests/integration/jpa/pom.xml
+++ b/tests/integration/jpa/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/jpa/simple/pom.xml b/tests/integration/jpa/simple/pom.xml
index a2bd217a99a..e2a83b59560 100644
--- a/tests/integration/jpa/simple/pom.xml
+++ b/tests/integration/jpa/simple/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.jpa
helidon-tests-integration-jpa-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/kafka/pom.xml b/tests/integration/kafka/pom.xml
index 877832effa4..19b08e9a78b 100644
--- a/tests/integration/kafka/pom.xml
+++ b/tests/integration/kafka/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.integration.kafka
diff --git a/tests/integration/mp-bean-validation/pom.xml b/tests/integration/mp-bean-validation/pom.xml
index b834c30a93b..21a6f188018 100644
--- a/tests/integration/mp-bean-validation/pom.xml
+++ b/tests/integration/mp-bean-validation/pom.xml
@@ -24,7 +24,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/mp-gh-1538/pom.xml b/tests/integration/mp-gh-1538/pom.xml
index 4c60389b0b3..f46bbcd2761 100644
--- a/tests/integration/mp-gh-1538/pom.xml
+++ b/tests/integration/mp-gh-1538/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-gh-2421/pom.xml b/tests/integration/mp-gh-2421/pom.xml
index 5c707339446..db1d686b9bf 100644
--- a/tests/integration/mp-gh-2421/pom.xml
+++ b/tests/integration/mp-gh-2421/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-gh-2461/pom.xml b/tests/integration/mp-gh-2461/pom.xml
index 9d536a8f92b..b843ca3e36f 100644
--- a/tests/integration/mp-gh-2461/pom.xml
+++ b/tests/integration/mp-gh-2461/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-gh-3246/pom.xml b/tests/integration/mp-gh-3246/pom.xml
index dca867289c2..ad2f41b99bd 100644
--- a/tests/integration/mp-gh-3246/pom.xml
+++ b/tests/integration/mp-gh-3246/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-gh-3974/pom.xml b/tests/integration/mp-gh-3974/pom.xml
index 3d5b3e834f1..1b5495dc602 100644
--- a/tests/integration/mp-gh-3974/pom.xml
+++ b/tests/integration/mp-gh-3974/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-gh-4123/pom.xml b/tests/integration/mp-gh-4123/pom.xml
index 551adca0f99..cc17bc8e0aa 100644
--- a/tests/integration/mp-gh-4123/pom.xml
+++ b/tests/integration/mp-gh-4123/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-gh-4654/pom.xml b/tests/integration/mp-gh-4654/pom.xml
index 97d2a16bcb0..f7c13e7b609 100644
--- a/tests/integration/mp-gh-4654/pom.xml
+++ b/tests/integration/mp-gh-4654/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-gh-5328/pom.xml b/tests/integration/mp-gh-5328/pom.xml
index 4ac6148095e..2ef0f36c76e 100644
--- a/tests/integration/mp-gh-5328/pom.xml
+++ b/tests/integration/mp-gh-5328/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/mp-graphql/pom.xml b/tests/integration/mp-graphql/pom.xml
index 4be3a9d4efe..6d38132044e 100644
--- a/tests/integration/mp-graphql/pom.xml
+++ b/tests/integration/mp-graphql/pom.xml
@@ -21,7 +21,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/mp-grpc/pom.xml b/tests/integration/mp-grpc/pom.xml
index d93f7cf6023..9902a9395c3 100644
--- a/tests/integration/mp-grpc/pom.xml
+++ b/tests/integration/mp-grpc/pom.xml
@@ -21,7 +21,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
diff --git a/tests/integration/mp-security-client/pom.xml b/tests/integration/mp-security-client/pom.xml
index aad4c5f2854..e01a96573ef 100644
--- a/tests/integration/mp-security-client/pom.xml
+++ b/tests/integration/mp-security-client/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/mp-ws-services/pom.xml b/tests/integration/mp-ws-services/pom.xml
index 39751b493c7..fd1ec833ddc 100644
--- a/tests/integration/mp-ws-services/pom.xml
+++ b/tests/integration/mp-ws-services/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/native-image/mp-1/pom.xml b/tests/integration/native-image/mp-1/pom.xml
index 87e70807c16..37193dc73c5 100644
--- a/tests/integration/native-image/mp-1/pom.xml
+++ b/tests/integration/native-image/mp-1/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/native-image/mp-2/pom.xml b/tests/integration/native-image/mp-2/pom.xml
index 722b916e723..b33b2849bd9 100644
--- a/tests/integration/native-image/mp-2/pom.xml
+++ b/tests/integration/native-image/mp-2/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/native-image/mp-3/pom.xml b/tests/integration/native-image/mp-3/pom.xml
index 67272763c21..619999a29fc 100644
--- a/tests/integration/native-image/mp-3/pom.xml
+++ b/tests/integration/native-image/mp-3/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/mp/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/native-image/pom.xml b/tests/integration/native-image/pom.xml
index dc9730b791d..e17e625dbdb 100644
--- a/tests/integration/native-image/pom.xml
+++ b/tests/integration/native-image/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../pom.xml
pom
diff --git a/tests/integration/native-image/se-1/pom.xml b/tests/integration/native-image/se-1/pom.xml
index 29bc120c4f2..27b25c52edf 100644
--- a/tests/integration/native-image/se-1/pom.xml
+++ b/tests/integration/native-image/se-1/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/native-image/static-content/pom.xml b/tests/integration/native-image/static-content/pom.xml
index f0edeb0b1c5..8f635cf2aed 100644
--- a/tests/integration/native-image/static-content/pom.xml
+++ b/tests/integration/native-image/static-content/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
io.helidon.tests.integration
diff --git a/tests/integration/oidc/pom.xml b/tests/integration/oidc/pom.xml
index d01ac919fe5..78edf4e5462 100644
--- a/tests/integration/oidc/pom.xml
+++ b/tests/integration/oidc/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/pom.xml b/tests/integration/pom.xml
index dc0815e8362..958a2679ec7 100644
--- a/tests/integration/pom.xml
+++ b/tests/integration/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests
helidon-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests.integration
diff --git a/tests/integration/restclient/pom.xml b/tests/integration/restclient/pom.xml
index 41037097eaa..3672baf224c 100644
--- a/tests/integration/restclient/pom.xml
+++ b/tests/integration/restclient/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/security/gh1487/pom.xml b/tests/integration/security/gh1487/pom.xml
index 27d7bf2acbb..07cad7b69d3 100644
--- a/tests/integration/security/gh1487/pom.xml
+++ b/tests/integration/security/gh1487/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration-security
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/security/gh2297/pom.xml b/tests/integration/security/gh2297/pom.xml
index 8f539051603..64133e0234d 100644
--- a/tests/integration/security/gh2297/pom.xml
+++ b/tests/integration/security/gh2297/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration-security
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/security/gh2455/pom.xml b/tests/integration/security/gh2455/pom.xml
index 5ff765f9be0..2324a495bef 100644
--- a/tests/integration/security/gh2455/pom.xml
+++ b/tests/integration/security/gh2455/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration-security
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/security/gh2772/pom.xml b/tests/integration/security/gh2772/pom.xml
index 40b72b3f32e..c229f797db6 100644
--- a/tests/integration/security/gh2772/pom.xml
+++ b/tests/integration/security/gh2772/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration-security
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/security/path-params/pom.xml b/tests/integration/security/path-params/pom.xml
index 6a5d5a16525..3e01716e87c 100644
--- a/tests/integration/security/path-params/pom.xml
+++ b/tests/integration/security/path-params/pom.xml
@@ -22,7 +22,7 @@
helidon-tests-integration-security
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/security/pom.xml b/tests/integration/security/pom.xml
index a56abd5a3d4..cbddba837d9 100644
--- a/tests/integration/security/pom.xml
+++ b/tests/integration/security/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/tests/integration/security/security-response-mapper/pom.xml b/tests/integration/security/security-response-mapper/pom.xml
index d361f539a85..be7491742b3 100644
--- a/tests/integration/security/security-response-mapper/pom.xml
+++ b/tests/integration/security/security-response-mapper/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration-security
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/tools/client/pom.xml b/tests/integration/tools/client/pom.xml
index e6c3c704a15..c1c5012c0ea 100644
--- a/tests/integration/tools/client/pom.xml
+++ b/tests/integration/tools/client/pom.xml
@@ -20,7 +20,7 @@
io.helidon.tests.integration.tools
helidon-tests-integration-tools-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/tools/example/pom.xml b/tests/integration/tools/example/pom.xml
index f18bc9da079..e26197fa3f5 100644
--- a/tests/integration/tools/example/pom.xml
+++ b/tests/integration/tools/example/pom.xml
@@ -29,7 +29,7 @@
io.helidon.applications
helidon-se
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../../applications/se/pom.xml
4.0.0
diff --git a/tests/integration/tools/pom.xml b/tests/integration/tools/pom.xml
index 88123172536..8bcb6151ea4 100644
--- a/tests/integration/tools/pom.xml
+++ b/tests/integration/tools/pom.xml
@@ -20,7 +20,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/tools/service/pom.xml b/tests/integration/tools/service/pom.xml
index 52049cfcb1a..75547383a02 100644
--- a/tests/integration/tools/service/pom.xml
+++ b/tests/integration/tools/service/pom.xml
@@ -20,7 +20,7 @@
io.helidon.tests.integration.tools
helidon-tests-integration-tools-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/vault/mp/pom.xml b/tests/integration/vault/mp/pom.xml
index 21e3d1e6796..fd5402e68a3 100644
--- a/tests/integration/vault/mp/pom.xml
+++ b/tests/integration/vault/mp/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.vault
helidon-tests-integration-vault-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-vault-mp
diff --git a/tests/integration/vault/pom.xml b/tests/integration/vault/pom.xml
index c10d66fd07d..7c63a32ec70 100644
--- a/tests/integration/vault/pom.xml
+++ b/tests/integration/vault/pom.xml
@@ -21,7 +21,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/tests/integration/vault/se/pom.xml b/tests/integration/vault/se/pom.xml
index a9c0195b2de..f35edaa33e8 100644
--- a/tests/integration/vault/se/pom.xml
+++ b/tests/integration/vault/se/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration.vault
helidon-tests-integration-vault-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tests-integration-vault-se
diff --git a/tests/integration/webclient/pom.xml b/tests/integration/webclient/pom.xml
index 1dd6361f99b..7aae12851f0 100644
--- a/tests/integration/webclient/pom.xml
+++ b/tests/integration/webclient/pom.xml
@@ -20,7 +20,7 @@
helidon-tests-integration
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/webserver/gh2631/pom.xml b/tests/integration/webserver/gh2631/pom.xml
index 4c36004aaa2..991aa036ed1 100644
--- a/tests/integration/webserver/gh2631/pom.xml
+++ b/tests/integration/webserver/gh2631/pom.xml
@@ -20,7 +20,7 @@
helidon-tests-integration-webserver
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/webserver/pom.xml b/tests/integration/webserver/pom.xml
index 1a8f27b871d..340808b98e3 100644
--- a/tests/integration/webserver/pom.xml
+++ b/tests/integration/webserver/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests.integration
helidon-tests-integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/tests/integration/webserver/upgrade/pom.xml b/tests/integration/webserver/upgrade/pom.xml
index 63d53cc8a3e..0b7f43c4fc6 100644
--- a/tests/integration/webserver/upgrade/pom.xml
+++ b/tests/integration/webserver/upgrade/pom.xml
@@ -20,7 +20,7 @@
helidon-tests-integration-webserver
io.helidon.tests.integration
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/tests/integration/zipkin-mp-2.2/pom.xml b/tests/integration/zipkin-mp-2.2/pom.xml
index 0fe6c755f8e..bbff7f6679b 100644
--- a/tests/integration/zipkin-mp-2.2/pom.xml
+++ b/tests/integration/zipkin-mp-2.2/pom.xml
@@ -22,7 +22,7 @@
io.helidon.applications
helidon-mp
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
../../../applications/mp/pom.xml
io.helidon.tests.integration
diff --git a/tests/pom.xml b/tests/pom.xml
index fb9c3737476..fce042af056 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.tests
diff --git a/tests/tck/pom.xml b/tests/tck/pom.xml
index 59f6556994b..91b5613d4b3 100644
--- a/tests/tck/pom.xml
+++ b/tests/tck/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests
helidon-tests-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
pom
diff --git a/tests/tck/tck-reactive-streams/pom.xml b/tests/tck/tck-reactive-streams/pom.xml
index c5fe1419bdc..393aec1f13c 100644
--- a/tests/tck/tck-reactive-streams/pom.xml
+++ b/tests/tck/tck-reactive-streams/pom.xml
@@ -23,7 +23,7 @@
io.helidon.tests
tck-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
tck-reactive-streams
diff --git a/tracing/config/pom.xml b/tracing/config/pom.xml
index 2aef75a5cd4..5d4ec4d2772 100644
--- a/tracing/config/pom.xml
+++ b/tracing/config/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-config
diff --git a/tracing/jaeger/pom.xml b/tracing/jaeger/pom.xml
index 484d292047a..e969f401e63 100644
--- a/tracing/jaeger/pom.xml
+++ b/tracing/jaeger/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-jaeger
diff --git a/tracing/jersey-client/pom.xml b/tracing/jersey-client/pom.xml
index ed407f9c629..2c704f66cbe 100644
--- a/tracing/jersey-client/pom.xml
+++ b/tracing/jersey-client/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-jersey-client
diff --git a/tracing/jersey/pom.xml b/tracing/jersey/pom.xml
index 1b7702c7ad0..5a8f106e6fa 100644
--- a/tracing/jersey/pom.xml
+++ b/tracing/jersey/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-jersey
diff --git a/tracing/opentelemetry/pom.xml b/tracing/opentelemetry/pom.xml
index 66ad08337d4..19866db6991 100644
--- a/tracing/opentelemetry/pom.xml
+++ b/tracing/opentelemetry/pom.xml
@@ -21,7 +21,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-opentelemetry
diff --git a/tracing/opentracing/pom.xml b/tracing/opentracing/pom.xml
index b71e3de4b88..955f20e1bdd 100644
--- a/tracing/opentracing/pom.xml
+++ b/tracing/opentracing/pom.xml
@@ -21,7 +21,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-opentracing
diff --git a/tracing/pom.xml b/tracing/pom.xml
index 45a5646596c..f1aea4fbccc 100644
--- a/tracing/pom.xml
+++ b/tracing/pom.xml
@@ -22,7 +22,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
io.helidon.tracing
diff --git a/tracing/tests/it-tracing-client-zipkin/pom.xml b/tracing/tests/it-tracing-client-zipkin/pom.xml
index 5c17f63a4c7..499e0cb6211 100644
--- a/tracing/tests/it-tracing-client-zipkin/pom.xml
+++ b/tracing/tests/it-tracing-client-zipkin/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-tests
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-tests-it1
diff --git a/tracing/tests/pom.xml b/tracing/tests/pom.xml
index f96ab5115dc..7213b4dee6e 100644
--- a/tracing/tests/pom.xml
+++ b/tracing/tests/pom.xml
@@ -25,7 +25,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
pom
diff --git a/tracing/tracer-resolver/pom.xml b/tracing/tracer-resolver/pom.xml
index 08b46a60cc7..fe17d60438e 100644
--- a/tracing/tracer-resolver/pom.xml
+++ b/tracing/tracer-resolver/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-tracer-resolver
diff --git a/tracing/tracing/pom.xml b/tracing/tracing/pom.xml
index 78eeb226ca0..58c1a1b8635 100644
--- a/tracing/tracing/pom.xml
+++ b/tracing/tracing/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing
diff --git a/tracing/zipkin/pom.xml b/tracing/zipkin/pom.xml
index 6689b53de20..84950c869e8 100644
--- a/tracing/zipkin/pom.xml
+++ b/tracing/zipkin/pom.xml
@@ -22,7 +22,7 @@
io.helidon.tracing
helidon-tracing-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-tracing-zipkin
diff --git a/webclient/jaxrs/pom.xml b/webclient/jaxrs/pom.xml
index 76ac3079726..a82196d8af8 100644
--- a/webclient/jaxrs/pom.xml
+++ b/webclient/jaxrs/pom.xml
@@ -21,7 +21,7 @@
helidon-webclient-project
io.helidon.webclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/webclient/metrics/pom.xml b/webclient/metrics/pom.xml
index 8af31f8243a..da33fe60da0 100644
--- a/webclient/metrics/pom.xml
+++ b/webclient/metrics/pom.xml
@@ -23,7 +23,7 @@
helidon-webclient-project
io.helidon.webclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/webclient/pom.xml b/webclient/pom.xml
index effcdf8d3be..3484d19f789 100644
--- a/webclient/pom.xml
+++ b/webclient/pom.xml
@@ -23,7 +23,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.webclient
diff --git a/webclient/security/pom.xml b/webclient/security/pom.xml
index aa79010e1e4..39d35283c63 100644
--- a/webclient/security/pom.xml
+++ b/webclient/security/pom.xml
@@ -23,7 +23,7 @@
helidon-webclient-project
io.helidon.webclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/webclient/tracing/pom.xml b/webclient/tracing/pom.xml
index 04ffda5ac41..ad828b9ca4b 100644
--- a/webclient/tracing/pom.xml
+++ b/webclient/tracing/pom.xml
@@ -23,7 +23,7 @@
helidon-webclient-project
io.helidon.webclient
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/webclient/webclient/pom.xml b/webclient/webclient/pom.xml
index 3e18a86f48d..e93646296b3 100644
--- a/webclient/webclient/pom.xml
+++ b/webclient/webclient/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webclient
helidon-webclient-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webclient
diff --git a/webserver/access-log/pom.xml b/webserver/access-log/pom.xml
index 819a3a41ffd..ea8b9ba8d46 100644
--- a/webserver/access-log/pom.xml
+++ b/webserver/access-log/pom.xml
@@ -21,7 +21,7 @@
helidon-webserver-project
io.helidon.webserver
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/webserver/cors/pom.xml b/webserver/cors/pom.xml
index 950f226858d..ac4b7a02274 100644
--- a/webserver/cors/pom.xml
+++ b/webserver/cors/pom.xml
@@ -21,7 +21,7 @@
io.helidon.webserver
helidon-webserver-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver-cors
diff --git a/webserver/http2/pom.xml b/webserver/http2/pom.xml
index 20ecf872725..54e0b7b3f7f 100644
--- a/webserver/http2/pom.xml
+++ b/webserver/http2/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver
helidon-webserver-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver-http2
Helidon WebServer HTTP2
diff --git a/webserver/jersey/pom.xml b/webserver/jersey/pom.xml
index e662ae9b2cc..d65cec64b11 100644
--- a/webserver/jersey/pom.xml
+++ b/webserver/jersey/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver
helidon-webserver-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver-jersey
Helidon WebServer Jersey
diff --git a/webserver/pom.xml b/webserver/pom.xml
index 0e485d5b1d5..4c0adc83504 100644
--- a/webserver/pom.xml
+++ b/webserver/pom.xml
@@ -24,7 +24,7 @@
io.helidon
helidon-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.webserver
helidon-webserver-project
diff --git a/webserver/static-content/pom.xml b/webserver/static-content/pom.xml
index 4613cd37aea..7f78e951273 100644
--- a/webserver/static-content/pom.xml
+++ b/webserver/static-content/pom.xml
@@ -21,7 +21,7 @@
helidon-webserver-project
io.helidon.webserver
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
4.0.0
diff --git a/webserver/test-support/pom.xml b/webserver/test-support/pom.xml
index f81803f6925..4eb2d374c76 100644
--- a/webserver/test-support/pom.xml
+++ b/webserver/test-support/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver
helidon-webserver-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver-test-support
Helidon WebServer Test Support
diff --git a/webserver/transport/netty/epoll/pom.xml b/webserver/transport/netty/epoll/pom.xml
index ce4c584cb32..0af34fdd5e6 100644
--- a/webserver/transport/netty/epoll/pom.xml
+++ b/webserver/transport/netty/epoll/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver.transport.netty
helidon-webserver-transport-netty-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver-transport-netty-epoll
Helidon WebServer Transport Netty Epoll
diff --git a/webserver/transport/netty/iouring/pom.xml b/webserver/transport/netty/iouring/pom.xml
index 83cd5308acd..9008449f71d 100644
--- a/webserver/transport/netty/iouring/pom.xml
+++ b/webserver/transport/netty/iouring/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver.transport.netty
helidon-webserver-transport-netty-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver-transport-netty-iouring
Helidon WebServer Transport Netty io_uring
diff --git a/webserver/transport/netty/pom.xml b/webserver/transport/netty/pom.xml
index d1ce6d9bd37..ef725a2a26d 100644
--- a/webserver/transport/netty/pom.xml
+++ b/webserver/transport/netty/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver.transport
helidon-webserver-transport-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.webserver.transport.netty
helidon-webserver-transport-netty-project
diff --git a/webserver/transport/pom.xml b/webserver/transport/pom.xml
index 55839369d8d..020ad23638a 100644
--- a/webserver/transport/pom.xml
+++ b/webserver/transport/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver
helidon-webserver-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
io.helidon.webserver.transport
helidon-webserver-transport-project
diff --git a/webserver/webserver/pom.xml b/webserver/webserver/pom.xml
index 705c2bc41f1..80d9f168305 100644
--- a/webserver/webserver/pom.xml
+++ b/webserver/webserver/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver
helidon-webserver-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver
Helidon WebServer
diff --git a/webserver/websocket/pom.xml b/webserver/websocket/pom.xml
index 64dd099fa6b..7c6d1bc8131 100644
--- a/webserver/websocket/pom.xml
+++ b/webserver/websocket/pom.xml
@@ -24,7 +24,7 @@
io.helidon.webserver
helidon-webserver-project
- 3.1.3-SNAPSHOT
+ 3.2.1-SNAPSHOT
helidon-webserver-websocket
Helidon WebServer WebSocket