19 lines
480 B
Groovy
19 lines
480 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "io.undertow"
|
|
module = 'undertow-core'
|
|
versions = "[1.4.0.Final,)"
|
|
// TODO (trask) try to remove the skipVersions in the future
|
|
// not sure what's wrong with this recent version, hopefully just publishing blip that
|
|
// will work itself out
|
|
skipVersions += ['2.2.7.Final']
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library "io.undertow:undertow-core:2.0.0.Final"
|
|
}
|