57 lines
1.5 KiB
Groovy
57 lines
1.5 KiB
Groovy
// Set properties before any plugins get loaded
|
|
ext {
|
|
minJavaVersionForTests = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
muzzle {
|
|
|
|
fail {
|
|
group = 'com.typesafe.play'
|
|
module = 'play-ahc-ws-standalone_2.11'
|
|
versions = '[,]'
|
|
}
|
|
|
|
pass {
|
|
group = 'com.typesafe.play'
|
|
module = 'play-ahc-ws-standalone_2.12'
|
|
versions = '[2.1.0,]'
|
|
skipVersions += '2.0.5' // Bad release
|
|
assertInverse = true
|
|
}
|
|
|
|
pass {
|
|
group = 'com.typesafe.play'
|
|
module = 'play-ahc-ws-standalone_2.13'
|
|
versions = '[2.1.0,]'
|
|
skipVersions += '2.0.5' // Bad release
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
def scalaVersion = '2.12'
|
|
|
|
dependencies {
|
|
compileOnly group: 'com.typesafe.play', name: "play-ahc-ws-standalone_$scalaVersion", version: '2.1.0'
|
|
|
|
implementation project(':instrumentation:play-ws:play-ws-common')
|
|
testImplementation project(path: ':instrumentation:play-ws:play-ws-common', configuration: 'testArtifacts')
|
|
|
|
// These are to ensure cross compatibility
|
|
testImplementation project(':instrumentation:netty:netty-4.0')
|
|
testImplementation project(':instrumentation:netty:netty-4.1')
|
|
testImplementation project(':instrumentation:akka-http-10.0')
|
|
|
|
testImplementation group: 'com.typesafe.play', name: "play-ahc-ws-standalone_$scalaVersion", version: '2.1.0'
|
|
|
|
latestDepTestImplementation group: 'com.typesafe.play', name: "play-ahc-ws-standalone_$scalaVersion", version: '+'
|
|
}
|