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
2 changes: 1 addition & 1 deletion .github/workflows/build-snapshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
coherenceVersion:
- 24.03.2-SNAPSHOT
- 24.09.1-SNAPSHOT
- 22.06.10-SNAPSHOT

# Checkout the source, we need a depth of zero to fetch all of the history otherwise
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-test-create-cluster-jdk21.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
matrix:
coherenceVersion:
- 24.03.1
- 24.09
javaVersion:
- 21

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-create-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- 22.06.9
- 22.06.10-SNAPSHOT
- 24.03.1
- 23.03.2-SNAPSHOT
- 24.09
javaVersion:
- 17

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-test-monitor-cluster-jdk21.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
coherenceVersion:
- 22.06.9
- 24.03.1
- 24.09
javaVersion:
- 21

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-test-monitor-health-jdk21.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
coherenceVersion:
- 22.06.9
- 24.03.1
- 24.09
javaVersion:
- 21

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-view-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- 24.03.2-SNAPSHOT
- 22.06.10-SNAPSHOT
- 24.03.1
- 24.09

# Checkout the source, we need a depth of zero to fetch all of the history otherwise
# the copyright check cannot work out the date of the files from Git.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatability-tests-released.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
coherenceVersion:
- 24.03.1
- 24.03.2-SNAPSHOT
- 24.09
- 22.06.9
- 22.06.10-SNAPSHOT
javaImage:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatability-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
coherenceVersion:
- 24.03.1
- 24.03.2-SNAPSHOT
- 24.09
- 22.06.9
- 22.06.10-SNAPSHOT
javaImage:
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/cluster_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ var (
defaultJars = []*config.DefaultDependency{
{GroupID: ceGroupID, Artifact: "coherence", IsCoherence: true},
{GroupID: ceGroupID, Artifact: "coherence-json", IsCoherence: true},
{GroupID: "org.jline", Artifact: "jline", IsCoherence: false, Version: "3.25.0"},
{GroupID: "org.jline", Artifact: "jline", IsCoherence: false, Version: "3.26.3"},
}

// list of additional coherence artifacts
validCoherenceArtifacts = []string{"coherence-cdi-server", "coherence-cdi", "coherence-concurrent", "coherence-grpc-proxy",
"coherence-grpc", "coherence-helidon-client", "coherence-helidon-grpc-proxy", "coherence-http-netty", "coherence-java-client",
"coherence-jcache", "coherence-jpa", "coherence-management", "coherence-micrometer", "coherence-mp-config", "coherence-metrics",
"coherence-mp-metrics", "coherence-rest"}
"coherence-mp-metrics", "coherence-rest", "coherence-hnsw", "coherence-mp-health"}
)

// checkCreateRequirements validates that all the necessary requirements are fulfilled
Expand Down
Loading