18 lines
341 B
Groovy
18 lines
341 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "com.github.oshi"
|
|
module = "oshi-core"
|
|
versions = "[5.3.1,)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':instrumentation:oshi:library')
|
|
|
|
library group: 'com.github.oshi', name: 'oshi-core', version: '5.3.1'
|
|
|
|
testImplementation deps.guava
|
|
}
|