18 lines
391 B
Groovy
18 lines
391 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "io.reactivex.rxjava2"
|
|
module = "rxjava"
|
|
versions = "[2.0.6,)"
|
|
extraDependency "io.reactivex.rxjava2:rxjava:2.0.6"
|
|
assertInverse true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":instrumentation:rxjava-2.0:library")
|
|
|
|
testImplementation project(':instrumentation:rxjava-2.0:testing')
|
|
}
|