24 lines
782 B
Groovy
24 lines
782 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "com.couchbase.client"
|
|
module = "java-client"
|
|
versions = "[3.1,)"
|
|
// Version 2.7.5 and 2.7.8 were not released properly and muzzle cannot test against it causing failure.
|
|
skipVersions += ['2.7.5', '2.7.8']
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(group: "com.couchbase.client", name: "tracing-opentelemetry", version: "0.3.3") {
|
|
exclude(group: "com.couchbase.client", module: "core-io")
|
|
}
|
|
|
|
library group: "com.couchbase.client", name: "core-io", version: "2.1.0"
|
|
|
|
testLibrary group: "com.couchbase.client", name: "java-client", version: "3.1.0"
|
|
|
|
testImplementation group: "org.testcontainers", name: "couchbase", version: versions.testcontainers
|
|
} |