19 lines
447 B
Groovy
19 lines
447 B
Groovy
ext.skipPublish = true
|
|
|
|
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.tomcat"
|
|
module = 'tomcat-catalina'
|
|
versions = "[3.0.14,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// This is the earliest version that has org.apache.catalina.loader.ParallelWebappClassLoader
|
|
// which is used in the test
|
|
testLibrary group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '8.0.14'
|
|
}
|