mirror of
https://github.com/jlengrand/helidon.git
synced 2026-03-10 08:21:17 +00:00
2.0: Update version to 2.0.1-SNAPSHOT. Update CHANGELOG (#2082)
* Update CHANGELOG.md after 2.0.0 release * Update version to 2.0.1-SNAPSHOT
This commit is contained in:
83
CHANGELOG.md
83
CHANGELOG.md
@@ -9,22 +9,77 @@ For Helidon 1.x releases please see [Helidon 1.x CHANGELOG.md](https://github.co
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Notes
|
||||
### Changes
|
||||
|
||||
## [2.0.0]
|
||||
|
||||
Helidon 2.0.0 is a major release that includes significant new features and fixes.
|
||||
As a major release it also includes some backward incompatible API changes.
|
||||
See section below.
|
||||
|
||||
### Notable New Features
|
||||
|
||||
- Helidon MP GraalVM Native Image support (in addition to existing Helidon SE GraalVM Native Image support)
|
||||
- Jakarta WebSocket support
|
||||
- CORS support
|
||||
- Easy generation of jlink custom runtime images including support for CDS archives for improved startup performance
|
||||
- Move to Java 11 APIs
|
||||
- Move to Jakarta EE APIs
|
||||
- Improved discovery and handling of JAX-RS applications
|
||||
- New MediaSupport API
|
||||
- Plus many other minor features and fixes
|
||||
|
||||
The following are early access features that are ready for developer use:
|
||||
|
||||
- Helidon SE reactive Web Client
|
||||
- Helidon SE reactive DB Client
|
||||
- MicroProfile Reactive Streams Operators
|
||||
- MicroProfile Reactive Streams Messaging
|
||||
- The Helidon CLI for creating new projects and fast iterative development
|
||||
|
||||
For more information see our documentation at
|
||||
[Helidon 2.0.0 Documentation ](https://helidon.io/docs/v2/#/about/01_overview)
|
||||
|
||||
### Changes
|
||||
|
||||
Changes between 2.0.0-RC2 and 2.0.0:
|
||||
|
||||
- Config: SE Config can be created from MP Config [2060](https://github.com/oracle/helidon/pull/2060)
|
||||
- Native image: Upgrade svm, annotation for reflection [2070](https://github.com/oracle/helidon/pull/2070)
|
||||
- Native image: JPA tests and native-image build changes [2014](https://github.com/oracle/helidon/pull/2014)
|
||||
- Native image updates [2050](https://github.com/oracle/helidon/pull/2050)
|
||||
- Native Image: Oracle DB with JPA [2044](https://github.com/oracle/helidon/pull/2044)
|
||||
- WebServer: Content now extends Multi [2043](https://github.com/oracle/helidon/pull/2043)
|
||||
- MediaSupport: media support deprecations cleanup [2068](https://github.com/oracle/helidon/pull/2068)
|
||||
- Reactive: Cancelling race condition fix [2027](https://github.com/oracle/helidon/pull/2027)
|
||||
- Security: Secure and httpOnly used correctly in SetCookie [2056](https://github.com/oracle/helidon/pull/2056)
|
||||
- Archetypes: Update MP db archetype to compile with native image. [2073](https://github.com/oracle/helidon/pull/2073)
|
||||
- Archetypes: DB Archetypes: README updates for native support [2065](https://github.com/oracle/helidon/pull/2065)
|
||||
- Archetypes: Remove unused import from template [2048](https://github.com/oracle/helidon/pull/2048)
|
||||
- Documentation: update for AOT. [2045](https://github.com/oracle/helidon/pull/2045)
|
||||
- Documentation: Collapsible docs menus / integrate build-tools 2.0.0 [2067](https://github.com/oracle/helidon/pull/2067)
|
||||
- Documentation: Docs cleanup [2074](https://github.com/oracle/helidon/pull/2074)
|
||||
- Documentation: Various AsciiDoctor warning fixes [2072](https://github.com/oracle/helidon/pull/2072)
|
||||
- Documentation: intro for JWT auth - link to mp spec [2069](https://github.com/oracle/helidon/pull/2069)
|
||||
- Documentation: Fixed broken links; added new [2071](https://github.com/oracle/helidon/pull/2071)
|
||||
- Documentatino: SE Messaging doc [2029](https://github.com/oracle/helidon/pull/2029)
|
||||
- Documentation: WebClient doc update [2064](https://github.com/oracle/helidon/pull/2064)
|
||||
- Documentation: fixed broken links in the intro [2022](https://github.com/oracle/helidon/pull/2022)
|
||||
|
||||
|
||||
### Backward incompatible changes
|
||||
|
||||
#### WebClient and WebServer TLS class names aligned
|
||||
Class configuration names for TLS are now aligned between WebClient and WebServer
|
||||
In order to stay current with dependencies and also refine our APIs we have
|
||||
introduced some backward incompatible changes in this release. For details
|
||||
see the
|
||||
[Helidon 2.0 MP Migration Guide](https://helidon.io/docs/v2/#/mp/guides/15_migration)
|
||||
and the
|
||||
[Helidon 2.0 SE Migration Guide](https://helidon.io/docs/v2/#/se/guides/15_migration)
|
||||
|
||||
| Old Name | New Name |
|
||||
| ------------------------ | ------------------ |
|
||||
| `Ssl` | `WebClientTls` |
|
||||
| `TlsConfig` | `WebServerTls` |
|
||||
#### Thank You!
|
||||
|
||||
Thanks to community members [dansiviter](https://github.com/dansiviter), [graemerocher](https://github.com/graemerocher) ,
|
||||
and [akarnokd](https://github.com/akarnokd) for their contributions to this release.
|
||||
|
||||
## [2.0.0-RC2]
|
||||
|
||||
@@ -173,6 +228,17 @@ Also, a number of deprecated methods have been removed from this release. See
|
||||
- Examples: Add trademark notices for Pokemon [2034](https://github.com/oracle/helidon/pull/2034)
|
||||
- Examples: WIP: New JPA example and archetype using Pokemons [1933](https://github.com/oracle/helidon/pull/1933)
|
||||
|
||||
### Backward incompatible changes
|
||||
|
||||
#### WebClient and WebServer TLS class names aligned
|
||||
Class configuration names for TLS are now aligned between WebClient and WebServer
|
||||
|
||||
| Old Name | New Name |
|
||||
| ------------------------ | ------------------ |
|
||||
| `Ssl` | `WebClientTls` |
|
||||
| `TlsConfig` | `WebServerTls` |
|
||||
|
||||
|
||||
#### Thank You!
|
||||
|
||||
Thanks to community members [dansiviter](https://github.com/dansiviter) and [graemerocher](https://github.com/graemerocher)
|
||||
@@ -880,7 +946,8 @@ If there is no authorization provider configured, ABAC provider will be configur
|
||||
otherwise they are ignored
|
||||
|
||||
|
||||
[Unreleased]: https://github.com/oracle/helidon/compare/2.0.0-RC2...HEAD
|
||||
[Unreleased]: https://github.com/oracle/helidon/compare/2.0.0...HEAD
|
||||
[2.0.0]: https://github.com/oracle/helidon/compare/2.0.0-RC2...2.0.0
|
||||
[2.0.0-RC2]: https://github.com/oracle/helidon/compare/2.0.0-RC1...2.0.0-RC2
|
||||
[2.0.0-RC1]: https://github.com/oracle/helidon/compare/2.0.0-M3...2.0.0-RC1
|
||||
[2.0.0-M3]: https://github.com/oracle/helidon/compare/2.0.0-M2...2.0.0-M3
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-applications-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-mp</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
<artifactId>helidon-dependencies</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../dependencies/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-applications-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>helidon-archetype</packaging>
|
||||
<artifactId>helidon-bare-mp</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>helidon-archetype</packaging>
|
||||
<artifactId>helidon-bare-se</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>helidon-archetype-catalog</packaging>
|
||||
<artifactId>helidon-archetype-catalog</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>helidon-archetype</packaging>
|
||||
<artifactId>helidon-database-mp</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>helidon-archetype</packaging>
|
||||
<artifactId>helidon-database-se</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
<artifactId>helidon-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>helidon-archetype</packaging>
|
||||
<artifactId>helidon-quickstart-mp</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.archetypes</groupId>
|
||||
<artifactId>helidon-archetypes-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>helidon-archetype</packaging>
|
||||
<artifactId>helidon-quickstart-se</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
<artifactId>helidon-parent</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../parent/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
@@ -32,7 +32,7 @@
|
||||
<name>Helidon BOM POM</name>
|
||||
|
||||
<properties>
|
||||
<helidon.version>2.0.0-SNAPSHOT</helidon.version>
|
||||
<helidon.version>2.0.1-SNAPSHOT</helidon.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.bundles</groupId>
|
||||
<artifactId>helidon-bundles-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-bundles-config</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.bundles</groupId>
|
||||
<artifactId>helidon-bundles-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-bundles-jersey</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
<artifactId>helidon-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modules>
|
||||
<module>config</module>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.bundles</groupId>
|
||||
<artifactId>helidon-bundles-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-bundles-security</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.bundles</groupId>
|
||||
<artifactId>helidon-bundles-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-bundles-webserver</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-common</artifactId>
|
||||
<name>Helidon Common</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<name>Helidon Common Configurable</name>
|
||||
<artifactId>helidon-common-configurable</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-common-context</artifactId>
|
||||
<name>Helidon Common Context</name>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>helidon-common-http</artifactId>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-common-key-util</artifactId>
|
||||
<name>Helidon Common Key Util</name>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-common-media-type</artifactId>
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
<artifactId>helidon-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-common-reactive</artifactId>
|
||||
<name>Helidon Common Reactive</name>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-common-project</artifactId>
|
||||
<groupId>io.helidon.common</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-config-mp</artifactId>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config</artifactId>
|
||||
<name>Helidon Config</name>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>helidon-config-encryption</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-etcd</artifactId>
|
||||
<name>Helidon Config Etcd</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-git</artifactId>
|
||||
<name>Helidon Config Git</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-hocon</artifactId>
|
||||
<name>Helidon Config HOCON</name>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
<artifactId>helidon-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-test-infrastructure</artifactId>
|
||||
<name>Helidon Config Test Infrastructure</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-testing</artifactId>
|
||||
<name>Helidon Config Testing</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-integration-tests</artifactId>
|
||||
<name>Helidon Config Tests Integration</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-module-mappers-1-base</artifactId>
|
||||
<name>Helidon Config Tests Mappers 1</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-module-mappers-2-override</artifactId>
|
||||
<name>Helidon Config Tests Parser 2</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-module-meta-source-1</artifactId>
|
||||
<name>Helidon Config Tests Meta Source 1</name>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-module-meta-source-2</artifactId>
|
||||
<name>Helidon Config Tests Meta Source 2</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-module-parsers-1-override</artifactId>
|
||||
<name>Helidon Config Tests Parser 1</name>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-bundle</artifactId>
|
||||
<name>Helidon Config Tests Bundle</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-1-properties</artifactId>
|
||||
<name>Helidon Config Tests Default Config 1</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-2-hocon-json</artifactId>
|
||||
<name>Helidon Config Tests Default Config 2</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-3-hocon</artifactId>
|
||||
<name>Helidon Config Tests Default Config 3</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-4-yaml</artifactId>
|
||||
<name>Helidon Config Tests Default Config 4</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-5-env_vars</artifactId>
|
||||
<name>Helidon Config Tests Default Config 5</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-6-meta-properties</artifactId>
|
||||
<name>Helidon Config Tests Default Config 6</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-7-meta-hocon-json</artifactId>
|
||||
<name>Helidon Config Tests Default Config 7</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-8-meta-hocon</artifactId>
|
||||
<name>Helidon Config Tests Default Config 8</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-default_config-9-meta-yaml</artifactId>
|
||||
<name>Helidon Config Tests Default Config 9</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-mappers-1-common</artifactId>
|
||||
<name>Helidon Config Tests Mappers Common 1</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-mappers-2-complex</artifactId>
|
||||
<name>Helidon Config Tests Parsers 2</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-meta-source</artifactId>
|
||||
<name>Helidon Config Tests Meta Source</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config.tests</groupId>
|
||||
<artifactId>helidon-config-tests-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-tests-test-parsers-1-complex</artifactId>
|
||||
<name>Helidon Config Tests Parsers 1</name>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.config</groupId>
|
||||
<artifactId>helidon-config-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-config-yaml</artifactId>
|
||||
<name>Helidon Config YAML</name>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-dbclient</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-dbclient-health</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-dbclient-jdbc</artifactId>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-dbclient-metrics-jdbc</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-dbclient-metrics</artifactId>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-project</artifactId>
|
||||
<groupId>io.helidon</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.dbclient</groupId>
|
||||
<artifactId>helidon-dbclient-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-dbclient-tracing</artifactId>
|
||||
|
||||
2
dependencies/pom.xml
vendored
2
dependencies/pom.xml
vendored
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon</groupId>
|
||||
<artifactId>helidon-bom</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../bom/pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>helidon-dependencies</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.config</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.config</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.config</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.config</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.config</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples</groupId>
|
||||
<artifactId>helidon-examples-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.config</groupId>
|
||||
<artifactId>helidon-examples-config-project</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.config</groupId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples</groupId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples.dbclient</groupId>
|
||||
<artifactId>helidon-examples-dbclient-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>helidon-examples-dbclient-common</artifactId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples</groupId>
|
||||
<artifactId>helidon-examples-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.employee</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples.grpc.microprofile</groupId>
|
||||
<artifactId>helidon-examples-grpc-microprofile-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-examples-grpc-microprofile-client</artifactId>
|
||||
<name>Helidon Microprofile gRPC Client Example</name>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples.grpc.microprofile</groupId>
|
||||
<artifactId>helidon-examples-grpc-microprofile-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-examples-grpc-microprofile-basic-implicit</artifactId>
|
||||
<name>Helidon Microprofile Examples gRPC Implicit Server</name>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples.grpc.microprofile</groupId>
|
||||
<artifactId>helidon-examples-grpc-microprofile-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>helidon-examples-grpc-microprofile-metrics</artifactId>
|
||||
<name>Helidon Microprofile Examples gRPC Metrics</name>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
<artifactId>helidon-examples-grpc-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<packaging>pom</packaging>
|
||||
<groupId>io.helidon.examples.grpc.microprofile</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.examples</groupId>
|
||||
<artifactId>helidon-examples-project</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
<artifactId>helidon-examples-grpc-project</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.grpc</groupId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-se</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../applications/se/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.health</groupId>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<parent>
|
||||
<artifactId>helidon-examples-project</artifactId>
|
||||
<groupId>io.helidon.examples</groupId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.health</groupId>
|
||||
<artifactId>helidon-examples-health-project</artifactId>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>io.helidon.applications</groupId>
|
||||
<artifactId>helidon-mp</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../../applications/mp/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>io.helidon.examples.integrations.cdi</groupId>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user