Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<version.lib.asciidoctor.diagram>2.2.1</version.lib.asciidoctor.diagram>
<version.lib.commonjava.directory>1.0</version.lib.commonjava.directory>
<version.plugin.helidon-build-tools>4.0.16</version.plugin.helidon-build-tools>
<version.plugin.jib>3.4.3</version.plugin.jib>
<version.plugin.jib>3.4.6</version.plugin.jib>
<version.plugin.maven.assembly>3.3.0</version.plugin.maven.assembly>
<version.plugin.maven.compiler>3.7.0</version.plugin.maven.compiler>
<version.plugin.maven.dependency>3.2.0</version.plugin.maven.dependency>
Expand Down Expand Up @@ -475,16 +475,5 @@
<enabled>true</enabled>
</snapshots>
</repository>

<repository>
<id>snapshots-repo-old</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>
28 changes: 14 additions & 14 deletions scripts/run-compat-ce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@
# Run compatability tests
set -e

echo "Coherence CE 22.06.12"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=22.06.12 make clean build-test-images test-e2e-standalone
echo "Coherence CE 22.06.13"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=22.06.13 make clean build-test-images test-e2e-standalone

echo "Coherence CE 14.1.2-0-2"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=14.1.2-0-2 make clean build-test-images test-e2e-standalone
echo "Coherence CE 14.1.2-0-3"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=14.1.2-0-3 make clean build-test-images test-e2e-standalone

echo "Coherence CE 25.03.1"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=25.03.1 make clean build-test-images test-e2e-standalone
echo "Coherence CE 25.03.2"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=25.03.2 make clean build-test-images test-e2e-standalone

echo "Coherence CE 25.03.1 with Executor"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,executor COHERENCE_VERSION=25.03.1 make clean build-test-images test-e2e-standalone
echo "Coherence CE 25.03.2 with Executor"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,executor COHERENCE_VERSION=25.03.2 make clean build-test-images test-e2e-standalone

echo "Coherence CE 14.1.1-0-19"
COHERENCE_VERSION=14.1.1-0-19 make clean build-test-images test-e2e-standalone
echo "Coherence CE 14.1.1-0-22"
COHERENCE_VERSION=14.1.1-0-22 make clean build-test-images test-e2e-standalone

echo "Coherence CE 25.03.1 with Topics"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,topics COHERENCE_VERSION=25.03.1 make clean build-test-images test-e2e-topics
echo "Coherence CE 25.03.2 with Topics"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,topics COHERENCE_VERSION=25.03.2 make clean build-test-images test-e2e-topics

echo "Coherence CE 25.03.1 with View Caches"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,views COHERENCE_VERSION=25.03.1 make clean build-view-images test-e2e-views
echo "Coherence CE 25.03.2 with View Caches"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,views COHERENCE_VERSION=25.03.2 make clean build-view-images test-e2e-views

# Security Enabled
export COMPUTERNAME=server1
Expand Down
Loading