Skip to content

Commit

Permalink
Integrate Coherence CE 24.03 (#68)
Browse files Browse the repository at this point in the history
Integrate Helidon 3.2.6
  • Loading branch information
rlubke authored Mar 26, 2024
1 parent 82f1be2 commit 7c3df12
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 37 deletions.
30 changes: 24 additions & 6 deletions carts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<parent>
<groupId>io.helidon.applications</groupId>
<artifactId>helidon-mp</artifactId>
<version>3.2.5</version>
<version>3.2.6</version>
<relativePath/>
</parent>

<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
<artifactId>carts</artifactId>
<packaging>jar</packaging>
<version>2.0.3-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>

<name>${project.artifactId}</name>
<description>Shopping Cart service for Helidon Sock Shop demo application</description>
Expand All @@ -33,13 +33,16 @@
<jib.goal>dockerBuild</jib.goal>

<!-- dependencies -->
<version.lib.coherence>23.09.2</version.lib.coherence>
<version.lib.coherence>24.03</version.lib.coherence>
<version.lib.lombok>1.18.32</version.lib.lombok>
<version.lib.junit>5.10.2</version.lib.junit>
<version.lib.hamcrest>2.2</version.lib.hamcrest>
<version.lib.jandex>3.1.6</version.lib.jandex>
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
<version.plugin.surefire>2.22.2</version.plugin.surefire>
<version.plugin.failsafe>2.22.2</version.plugin.failsafe>
<version.plugin.surefire>3.2.5</version.plugin.surefire>
<version.plugin.failsafe>3.2.5</version.plugin.failsafe>
<version.plugin.jandex>${version.lib.jandex}</version.plugin.jandex>
<version.plugin.jar>3.3.0</version.plugin.jar>
<version.plugin.surefire.provider.junit>1.3.2</version.plugin.surefire.provider.junit>
<version.plugin.jib>3.4.1</version.plugin.jib>
<version.lib.jaeger>1.8.1</version.lib.jaeger>
Expand Down Expand Up @@ -82,6 +85,12 @@
<dependency>
<groupId>io.helidon.microprofile.bundles</groupId>
<artifactId>helidon-microprofile</artifactId>
<exclusions>
<exclusion>
<artifactId>jandex</artifactId>
<groupId>org.jboss</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.helidon.tracing</groupId>
Expand Down Expand Up @@ -109,6 +118,13 @@
<version>${version.lib.coherence}</version>
</dependency>

<!-- jandex -->
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex</artifactId>
<version>${version.lib.jandex}</version>
</dependency>

<!-- tracing -->
<dependency>
<groupId>io.jaegertracing</groupId>
Expand Down Expand Up @@ -154,8 +170,9 @@
<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>${version.plugin.jandex}</version>
<executions>
<execution>
<id>make-index</id>
Expand Down Expand Up @@ -185,6 +202,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.plugin.jar}</version>
<executions>
<execution>
<goals>
Expand Down
30 changes: 24 additions & 6 deletions catalog/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<parent>
<groupId>io.helidon.applications</groupId>
<artifactId>helidon-mp</artifactId>
<version>3.2.5</version>
<version>3.2.6</version>
<relativePath/>
</parent>

<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
<artifactId>catalog</artifactId>
<packaging>jar</packaging>
<version>2.0.3-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>

<properties>
<mainClass>com.oracle.coherence.examples.sockshop.helidon.catalog.Application</mainClass>
Expand All @@ -30,13 +30,16 @@
<jib.goal>dockerBuild</jib.goal>

<!-- dependencies -->
<version.lib.coherence>23.09.2</version.lib.coherence>
<version.lib.coherence>24.03</version.lib.coherence>
<version.lib.lombok>1.18.32</version.lib.lombok>
<version.lib.junit>5.10.2</version.lib.junit>
<version.lib.hamcrest>2.2</version.lib.hamcrest>
<version.lib.jandex>3.1.6</version.lib.jandex>
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
<version.plugin.surefire>2.22.2</version.plugin.surefire>
<version.plugin.failsafe>2.22.2</version.plugin.failsafe>
<version.plugin.surefire>3.2.5</version.plugin.surefire>
<version.plugin.failsafe>3.2.5</version.plugin.failsafe>
<version.plugin.jandex>${version.lib.jandex}</version.plugin.jandex>
<version.plugin.jar>3.3.0</version.plugin.jar>
<version.plugin.surefire.provider.junit>1.3.2</version.plugin.surefire.provider.junit>
<version.plugin.jib>3.4.1</version.plugin.jib>
<version.lib.jaeger>1.8.1</version.lib.jaeger>
Expand Down Expand Up @@ -79,6 +82,12 @@
<dependency>
<groupId>io.helidon.microprofile.bundles</groupId>
<artifactId>helidon-microprofile</artifactId>
<exclusions>
<exclusion>
<artifactId>jandex</artifactId>
<groupId>org.jboss</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.helidon.tracing</groupId>
Expand Down Expand Up @@ -106,6 +115,13 @@
<version>${version.lib.coherence}</version>
</dependency>

<!-- jandex -->
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex</artifactId>
<version>${version.lib.jandex}</version>
</dependency>

<!-- tracing -->
<dependency>
<groupId>io.jaegertracing</groupId>
Expand Down Expand Up @@ -151,8 +167,9 @@
<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>${version.plugin.jandex}</version>
<executions>
<execution>
<id>make-index</id>
Expand Down Expand Up @@ -182,6 +199,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.plugin.jar}</version>
<executions>
<execution>
<goals>
Expand Down
30 changes: 24 additions & 6 deletions orders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<parent>
<groupId>io.helidon.applications</groupId>
<artifactId>helidon-mp</artifactId>
<version>3.2.5</version>
<version>3.2.6</version>
<relativePath/>
</parent>

<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
<artifactId>orders</artifactId>
<packaging>jar</packaging>
<version>2.0.3-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>

<properties>
<mainClass>com.oracle.coherence.examples.sockshop.helidon.orders.Application</mainClass>
Expand All @@ -31,13 +31,16 @@

<!-- dependencies -->
<version.lib.bedrock>7.0.3</version.lib.bedrock>
<version.lib.coherence>23.09.2</version.lib.coherence>
<version.lib.coherence>24.03</version.lib.coherence>
<version.lib.lombok>1.18.32</version.lib.lombok>
<version.lib.junit>5.10.2</version.lib.junit>
<version.lib.hamcrest>2.2</version.lib.hamcrest>
<version.lib.jandex>3.1.6</version.lib.jandex>
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
<version.plugin.surefire>2.22.2</version.plugin.surefire>
<version.plugin.failsafe>2.22.2</version.plugin.failsafe>
<version.plugin.surefire>3.2.5</version.plugin.surefire>
<version.plugin.failsafe>3.2.5</version.plugin.failsafe>
<version.plugin.jandex>${version.lib.jandex}</version.plugin.jandex>
<version.plugin.jar>3.3.0</version.plugin.jar>
<version.plugin.surefire.provider.junit>1.3.2</version.plugin.surefire.provider.junit>
<version.plugin.jib>3.4.1</version.plugin.jib>
<version.lib.jaeger>1.8.1</version.lib.jaeger>
Expand Down Expand Up @@ -82,6 +85,12 @@
<dependency>
<groupId>io.helidon.microprofile.bundles</groupId>
<artifactId>helidon-microprofile</artifactId>
<exclusions>
<exclusion>
<artifactId>jandex</artifactId>
<groupId>org.jboss</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.helidon.microprofile.grpc</groupId>
Expand Down Expand Up @@ -113,6 +122,13 @@
<version>${version.lib.coherence}</version>
</dependency>

<!-- jandex -->
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex</artifactId>
<version>${version.lib.jandex}</version>
</dependency>

<!-- tracing -->
<dependency>
<groupId>io.jaegertracing</groupId>
Expand Down Expand Up @@ -169,8 +185,9 @@
<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>${version.plugin.jandex}</version>
<executions>
<execution>
<id>make-index</id>
Expand Down Expand Up @@ -200,6 +217,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.plugin.jar}</version>
<executions>
<execution>
<goals>
Expand Down
30 changes: 24 additions & 6 deletions payment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<parent>
<groupId>io.helidon.applications</groupId>
<artifactId>helidon-mp</artifactId>
<version>3.2.5</version>
<version>3.2.6</version>
<relativePath/>
</parent>

<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
<artifactId>payment</artifactId>
<packaging>jar</packaging>
<version>2.0.3-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>

<properties>
<mainClass>com.oracle.coherence.examples.sockshop.helidon.payment.Application</mainClass>
Expand All @@ -30,14 +30,17 @@
<jib.goal>dockerBuild</jib.goal>

<!-- dependencies -->
<version.lib.coherence>23.09.2</version.lib.coherence>
<version.lib.coherence>24.03</version.lib.coherence>
<version.lib.lombok>1.18.32</version.lib.lombok>
<version.lib.junit>5.10.2</version.lib.junit>
<version.lib.hamcrest>2.2</version.lib.hamcrest>
<version.lib.jandex>3.1.6</version.lib.jandex>
<version.lib.mockito>3.9.0</version.lib.mockito>
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
<version.plugin.surefire>2.22.2</version.plugin.surefire>
<version.plugin.failsafe>2.22.2</version.plugin.failsafe>
<version.plugin.surefire>3.2.5</version.plugin.surefire>
<version.plugin.failsafe>3.2.5</version.plugin.failsafe>
<version.plugin.jandex>${version.lib.jandex}</version.plugin.jandex>
<version.plugin.jar>3.3.0</version.plugin.jar>
<version.plugin.surefire.provider.junit>1.3.2</version.plugin.surefire.provider.junit>
<version.plugin.jib>3.4.1</version.plugin.jib>
<version.lib.jaeger>1.8.1</version.lib.jaeger>
Expand Down Expand Up @@ -80,6 +83,12 @@
<dependency>
<groupId>io.helidon.microprofile.bundles</groupId>
<artifactId>helidon-microprofile</artifactId>
<exclusions>
<exclusion>
<artifactId>jandex</artifactId>
<groupId>org.jboss</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.helidon.microprofile.grpc</groupId>
Expand Down Expand Up @@ -115,6 +124,13 @@
<version>${version.lib.coherence}</version>
</dependency>

<!-- jandex -->
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex</artifactId>
<version>${version.lib.jandex}</version>
</dependency>

<!-- tracing -->
<dependency>
<groupId>io.jaegertracing</groupId>
Expand Down Expand Up @@ -170,8 +186,9 @@
<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>${version.plugin.jandex}</version>
<executions>
<execution>
<id>make-index</id>
Expand Down Expand Up @@ -201,6 +218,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.plugin.jar}</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
<artifactId>sockshop-coh</artifactId>
<packaging>pom</packaging>
<version>2.0.3-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>

<modules>
<module>carts</module>
Expand Down
Loading

0 comments on commit 7c3df12

Please sign in to comment.