Skip to content

Commit af0a95f

Browse files
authored
Remove Hazelcast 3 tests (#6150)
This simplifies our version catalog so we don't need to track upgrades to two different versions of the same artifact, with which Dependabot notoriously struggles. Hazelcast 3 hasn't had a release in almost 3 years at this point, so I think we don't need to keep testing compatibility with it. Hazelcast 5 is the latest, which is what we compile against.
1 parent e314621 commit af0a95f

File tree

7 files changed

+1
-314
lines changed

7 files changed

+1
-314
lines changed

gradle/libs.versions.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ guava = "32.1.3-jre"
2323
guice = "5.1.0"
2424
h2 = "2.3.232"
2525
hazelcast = "5.3.2"
26-
hazelcast3 = "3.12.13"
2726
hdrhistogram = "2.2.2"
2827
hibernate = "5.6.15.Final"
2928
# 2.6.0 requires JDK 11
@@ -120,7 +119,6 @@ guava = { module = "com.google.guava:guava", version.ref = "guava" }
120119
guice = { module = "com.google.inject:guice", version.ref = "guice" }
121120
h2 = { module = "com.h2database:h2", version.ref = "h2" }
122121
hazelcast = { module = "com.hazelcast:hazelcast", version.ref = "hazelcast" }
123-
hazelcast3 = { module = "com.hazelcast:hazelcast", version.ref = "hazelcast3" }
124122
hdrhistogram = { module = "org.hdrhistogram:HdrHistogram", version.ref = "hdrhistogram" }
125123
hibernateEntitymanager = { module = "org.hibernate:hibernate-entitymanager", version.ref = "hibernate" }
126124
hsqldb = { module = "org.hsqldb:hsqldb", version.ref = "hsqldb" }

samples/micrometer-samples-hazelcast3/build.gradle

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

samples/micrometer-samples-hazelcast3/src/main/java/io/micrometer/samples/hazelcast3/HazelcastCacheSample.java

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

samples/micrometer-samples-hazelcast3/src/main/resources/logback.xml

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

samples/micrometer-samples-hazelcast3/src/test/java/io/micrometer/samples/hazelcast3/Hazelcast3CacheMetricsCompatibilityTest.java

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

samples/micrometer-samples-hazelcast3/src/test/java/io/micrometer/samples/hazelcast3/Hazelcast3CacheMetricsTest.java

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

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ buildCache {
2626

2727
include 'micrometer-commons', 'micrometer-core', 'micrometer-observation'
2828

29-
['core', 'boot2', 'boot2-reactive', 'spring-integration', 'hazelcast', 'hazelcast3', 'javalin', 'jersey3', 'jooq', 'kotlin', 'spring-framework6'].each { sample ->
29+
['core', 'boot2', 'boot2-reactive', 'spring-integration', 'hazelcast', 'javalin', 'jersey3', 'jooq', 'kotlin', 'spring-framework6'].each { sample ->
3030
include "micrometer-samples-$sample"
3131
project(":micrometer-samples-$sample").projectDir = new File(rootProject.projectDir, "samples/micrometer-samples-$sample")
3232
}

0 commit comments

Comments
 (0)