Skip to content

Commit 473347a

Browse files
committed
Update Coherence to version 21.06
1 parent bb4c604 commit 473347a

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ OPERATOR_SDK = $(CURRDIR)/hack/sdk/$(UNAME_S)-$(UNAME_M)/operator-sdk
4646
MAVEN_OPTIONS ?= -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3
4747

4848
# The Coherence image to use for deployments that do not specify an image
49-
COHERENCE_VERSION ?= 20.12.1
50-
COHERENCE_IMAGE ?= oraclecoherence/coherence-ce:20.12.1
49+
COHERENCE_VERSION ?= 21.06
50+
COHERENCE_IMAGE ?= oraclecoherence/coherence-ce:21.06
5151
# This is the Coherence image that will be used in tests.
5252
# Changing this variable will allow test builds to be run against different Coherence versions
5353
# without altering the default image name.

config/operator/config.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

examples/autoscaler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<maven.compiler.target>11</maven.compiler.target>
2121

2222
<coherence.group.id>com.oracle.coherence.ce</coherence.group.id>
23-
<coherence.version>20.12.1</coherence.version>
23+
<coherence.version>21.06</coherence.version>
2424

2525
<jib.version>2.8.0</jib.version>
2626

examples/deployment/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<properties>
1818
<coherence.group.id>com.oracle.coherence.ce</coherence.group.id>
19-
<coherence.version>20.12.1</coherence.version>
19+
<coherence.version>21.06</coherence.version>
2020

2121
<helidon.version>1.3.1</helidon.version>
2222

examples/tls/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ We will see json something like this:
610610
"refreshTime": "2021-03-07T12:27:20.193Z",
611611
"licenseMode": "Development",
612612
"localMemberId": 1,
613-
"version": "20.12.1",
613+
"version": "21.06",
614614
"running": true,
615615
"clusterName": "test-cluster",
616616
"membersDepartureCount": 0,
@@ -888,7 +888,7 @@ kubectl -n coherence-test logs client
888888

889889
[source]
890890
----
891-
2021-03-07 12:53:13.481/1.992 Oracle Coherence CE 20.12.1 <Error> (thread=main, member=n/a): Error while starting service "Proxy": com.tangosol.net.messaging.ConnectionException: could not establish a connection to one of the following addresses: []
891+
2021-03-07 12:53:13.481/1.992 Oracle Coherence CE 21.06 <Error> (thread=main, member=n/a): Error while starting service "Proxy": com.tangosol.net.messaging.ConnectionException: could not establish a connection to one of the following addresses: []
892892
----
893893
This tells us that the client failed to connect to the cluster, because the client is not using TLS.
894894

java/pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<maven.compiler.target>8</maven.compiler.target>
4040

4141
<!-- The Coherence jar version (compile time dependency) -->
42-
<coherence.version>20.12.1</coherence.version>
42+
<coherence.version>21.06</coherence.version>
4343
<!-- The version of Coherence to use in the test images -->
4444
<coherence.test.groupId>com.oracle.coherence.ce</coherence.test.groupId>
4545
<coherence.test.version>${coherence.version}</coherence.test.version>
@@ -640,6 +640,17 @@
640640
<repository>
641641
<id>ossrh-staging</id>
642642
<name>OSS Sonatype Snapshots</name>
643+
<url>https://oss.sonatype.org/content/groups/staging</url>
644+
<snapshots>
645+
<enabled>false</enabled>
646+
</snapshots>
647+
<releases>
648+
<enabled>true</enabled>
649+
</releases>
650+
</repository>
651+
<repository>
652+
<id>ossrh-snapshots</id>
653+
<name>OSS Sonatype Snapshots</name>
643654
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
644655
<snapshots>
645656
<enabled>true</enabled>

0 commit comments

Comments
 (0)