play-ws-common.gradle 606 B

12345678910111213141516171819202122232425
  1. // Set properties before any plugins get loaded
  2. ext {
  3. minJavaVersionForTests = JavaVersion.VERSION_1_8
  4. }
  5. apply from: "$rootDir/gradle/instrumentation.gradle"
  6. apply plugin: 'org.unbroken-dome.test-sets'
  7. def scalaVersion = '2.12'
  8. configurations {
  9. testArtifacts
  10. }
  11. // Create test artifact so that test base class can be reused
  12. artifacts {
  13. testArtifacts testJar
  14. }
  15. dependencies {
  16. compileOnly group: 'com.typesafe.play', name: "play-ahc-ws-standalone_$scalaVersion", version: '1.0.2'
  17. testImplementation group: 'com.typesafe.play', name: "play-ahc-ws-standalone_$scalaVersion", version: '1.0.2'
  18. }