Fix the build (#6445)

This commit is contained in:
Trask Stalnaker 2022-08-08 17:39:06 -07:00 committed by GitHub
parent 0804fef429
commit beabda6d96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -6,12 +6,12 @@ muzzle {
pass {
group.set("org.apache.camel")
module.set("camel-core")
versions.set("[2.20,3)")
versions.set("[2.19,3)")
assertInverse.set(true)
}
}
val camelversion = "2.20.1"
val camelversion = "2.20.1" // first version that the tests pass on
val versions: Map<String, String> by project
dependencies {

View File

@ -10,6 +10,8 @@ muzzle {
// Used by all SDK services, the only case it isn't is an SDK extension such as a custom HTTP
// client, which is not target of instrumentation anyways.
extraDependency("software.amazon.awssdk:protocol-core")
// several software.amazon.awssdk artifacts are missing for this version
skip("2.17.200")
}
}

View File

@ -13,13 +13,12 @@ muzzle {
// which (also obviously) does not exist
skip("3.1.15", "3.3.6")
// these versions pass if you add the grails maven repository (https://repo.grails.org/artifactory/core)
skip("3.2.0", "3.3.0", "3.3.1", "3.3.2", "3.3.3", "4.0.0", "4.0.1", "4.0.5", "4.0.6", "4.0.7", "4.0.8", "4.0.9")
skip("3.2.0", "3.3.0", "3.3.1", "3.3.2", "3.3.3", "3.3.10", "3.3.13", "3.3.14", "3.3.15", "4.0.0", "4.0.1", "4.0.5", "4.0.6", "4.0.7", "4.0.8", "4.0.9", "4.0.10", "4.0.11", "4.0.12", "4.0.13")
assertInverse.set(true)
}
}
// first version where our tests work
val grailsVersion = "3.0.6"
val grailsVersion = "3.0.6" // first version that the tests pass on
val springBootVersion = "1.2.5.RELEASE"
dependencies {