From d77487017ee294643f26273930a3995a873cb24d Mon Sep 17 00:00:00 2001 From: Tyler Benson Date: Tue, 6 Aug 2019 08:58:36 -0700 Subject: [PATCH] muzzle fix --- .../couchbase-2.0/couchbase-2.0.gradle | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dd-java-agent/instrumentation/couchbase-2.0/couchbase-2.0.gradle b/dd-java-agent/instrumentation/couchbase-2.0/couchbase-2.0.gradle index df0477aed7..2e67141e9a 100644 --- a/dd-java-agent/instrumentation/couchbase-2.0/couchbase-2.0.gradle +++ b/dd-java-agent/instrumentation/couchbase-2.0/couchbase-2.0.gradle @@ -14,8 +14,8 @@ testSets { } muzzle { - // Version 2.7.5 was not released properly and muzzle cannot test against it causing failure. - // So we have to skip it resulting in this verbose setup. + // Version 2.7.5 and 2.7.8 were not released properly and muzzle cannot test against it causing failure. + // So we have to skip them resulting in this verbose setup. fail { group = 'com.couchbase.client' module = 'java-client' @@ -29,7 +29,12 @@ muzzle { pass { group = 'com.couchbase.client' module = 'java-client' - versions = "[2.7.6,)" + versions = "[2.7.6,2.7.8)" + } + pass { + group = 'com.couchbase.client' + module = 'java-client' + versions = "[2.7.9,)" } fail { group = 'com.couchbase.client'