Skip to content

Commit d982452

Browse files
authored
2.3.0 release (#140)
* Set version to 2.3.0 for the release. * Fix documentation reference. * Remove skipTests
1 parent 8797160 commit d982452

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

.github/workflows/build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021, 2023 Oracle Corporation and/or its affiliates.
1+
# Copyright 2021, 2025, Oracle Corporation and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at
33
# https://oss.oracle.com/licenses/upl.
44

@@ -36,7 +36,7 @@ jobs:
3636
- name: Build with Maven
3737
env:
3838
MAVEN_OPTS: -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3
39-
run: mvn -B install -DskipTests --file pom.xml
39+
run: mvn -B install --file pom.xml
4040

4141
- name: Push container images
4242
env:

carts/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
2222
<artifactId>carts</artifactId>
2323
<packaging>jar</packaging>
24-
<version>2.2.4-SNAPSHOT</version>
24+
<version>2.3.0</version>
2525

2626
<name>${project.artifactId}</name>
2727
<description>Shopping Cart service for Helidon Sock Shop demo application</description>

catalog/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
2222
<artifactId>catalog</artifactId>
2323
<packaging>jar</packaging>
24-
<version>2.2.4-SNAPSHOT</version>
24+
<version>2.3.0</version>
2525

2626
<properties>
2727
<mainClass>com.oracle.coherence.examples.sockshop.helidon.catalog.Application</mainClass>

doc/complete-application-deployment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* [Additional Pre-Requisites](#additional-pre-requisites)
44
* [Install Prometheus and Grafana](#install-prometheus-and-grafana)
55
* [Expose Application via a Load Balancer](#expose-application-via-a-load-balancer)
6-
* [Install the Jaeger Operator](#install-the-jaeger-operator)
6+
* [Install the OpenTelemetry Operator](#install-the-opentelemetry-operator)
77
* [Access Swagger](#access-swagger)
88
* [Cleanup](#cleanup)
99

k8s/coherence/carts/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
cluster: SockShop
1313
role: Carts
1414
replicas: 1
15-
image: ghcr.io/oracle/coherence-helidon-sockshop-carts:latest
15+
image: ghcr.io/oracle/coherence-helidon-sockshop-carts:2.3.0
1616
readinessProbe:
1717
initialDelaySeconds: 10
1818
periodSeconds: 10

k8s/coherence/catalog/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
cluster: SockShop
1313
role: Catalog
1414
replicas: 1
15-
image: ghcr.io/oracle/coherence-helidon-sockshop-catalog:latest
15+
image: ghcr.io/oracle/coherence-helidon-sockshop-catalog:2.3.0
1616
readinessProbe:
1717
initialDelaySeconds: 10
1818
periodSeconds: 10

k8s/coherence/orders/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
cluster: SockShop
1313
role: Orders
1414
replicas: 1
15-
image: ghcr.io/oracle/coherence-helidon-sockshop-orders:latest
15+
image: ghcr.io/oracle/coherence-helidon-sockshop-orders:2.3.0
1616
readinessProbe:
1717
initialDelaySeconds: 10
1818
periodSeconds: 10

k8s/coherence/payment/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
cluster: SockShop
1313
role: Payment
1414
replicas: 1
15-
image: ghcr.io/oracle/coherence-helidon-sockshop-payment:latest
15+
image: ghcr.io/oracle/coherence-helidon-sockshop-payment:2.3.0
1616
readinessProbe:
1717
initialDelaySeconds: 10
1818
periodSeconds: 10

k8s/coherence/shipping/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
cluster: SockShop
1313
role: Shipping
1414
replicas: 1
15-
image: ghcr.io/oracle/coherence-helidon-sockshop-shipping:latest
15+
image: ghcr.io/oracle/coherence-helidon-sockshop-shipping:2.3.0
1616
readinessProbe:
1717
initialDelaySeconds: 10
1818
periodSeconds: 10

k8s/coherence/users/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
cluster: SockShop
1313
role: Users
1414
replicas: 1
15-
image: ghcr.io/oracle/coherence-helidon-sockshop-users:latest
15+
image: ghcr.io/oracle/coherence-helidon-sockshop-users:2.3.0
1616
readinessProbe:
1717
initialDelaySeconds: 10
1818
periodSeconds: 10

orders/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
2222
<artifactId>orders</artifactId>
2323
<packaging>jar</packaging>
24-
<version>2.2.4-SNAPSHOT</version>
24+
<version>2.3.0</version>
2525

2626
<properties>
2727
<mainClass>com.oracle.coherence.examples.sockshop.helidon.orders.Application</mainClass>

payment/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
2222
<artifactId>payment</artifactId>
2323
<packaging>jar</packaging>
24-
<version>2.2.4-SNAPSHOT</version>
24+
<version>2.3.0</version>
2525

2626
<properties>
2727
<mainClass>com.oracle.coherence.examples.sockshop.helidon.payment.Application</mainClass>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
1515
<artifactId>sockshop-coh</artifactId>
1616
<packaging>pom</packaging>
17-
<version>2.2.4-SNAPSHOT</version>
17+
<version>2.3.0</version>
1818

1919
<modules>
2020
<module>carts</module>

shipping/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
2222
<artifactId>shipping</artifactId>
2323
<packaging>jar</packaging>
24-
<version>2.2.4-SNAPSHOT</version>
24+
<version>2.3.0</version>
2525

2626
<properties>
2727
<mainClass>com.oracle.coherence.examples.sockshop.helidon.shipping.Application</mainClass>

users/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.oracle.coherence.examples.sockshop.helidon</groupId>
2222
<artifactId>users</artifactId>
2323
<packaging>jar</packaging>
24-
<version>2.2.4-SNAPSHOT</version>
24+
<version>2.3.0</version>
2525

2626
<properties>
2727
<mainClass>com.oracle.coherence.examples.sockshop.helidon.users.Application</mainClass>

0 commit comments

Comments
 (0)