Specify Scala dependency in single place
This commit is contained in:
parent
8455304006
commit
b8276ac70b
|
@ -6,7 +6,7 @@ excludedClassesConverage += ['*']
|
||||||
dependencies {
|
dependencies {
|
||||||
testCompile project(':dd-trace-api')
|
testCompile project(':dd-trace-api')
|
||||||
testCompile project(':dd-trace-ot')
|
testCompile project(':dd-trace-ot')
|
||||||
testCompile group: 'org.scala-lang', name: 'scala-library', version: '2.11.12'
|
testCompile deps.scala
|
||||||
testCompile group: 'com.typesafe.akka', name: 'akka-actor_2.11', version: '2.3.16'
|
testCompile group: 'com.typesafe.akka', name: 'akka-actor_2.11', version: '2.3.16'
|
||||||
testCompile group: 'com.typesafe.akka', name: 'akka-testkit_2.11', version: '2.3.16'
|
testCompile group: 'com.typesafe.akka', name: 'akka-testkit_2.11', version: '2.3.16'
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ dependencies {
|
||||||
slickTestCompile project(':dd-java-agent:instrumentation:java-concurrent')
|
slickTestCompile project(':dd-java-agent:instrumentation:java-concurrent')
|
||||||
slickTestCompile project(':dd-java-agent:instrumentation:trace-annotation')
|
slickTestCompile project(':dd-java-agent:instrumentation:trace-annotation')
|
||||||
slickTestCompile project(':dd-java-agent:instrumentation:jdbc')
|
slickTestCompile project(':dd-java-agent:instrumentation:jdbc')
|
||||||
slickTestCompile group: 'org.scala-lang', name: 'scala-library', version: '2.11.12'
|
slickTestCompile deps.scala
|
||||||
slickTestCompile group: 'com.typesafe.slick', name: 'slick_2.11', version: '3.2.0'
|
slickTestCompile group: 'com.typesafe.slick', name: 'slick_2.11', version: '3.2.0'
|
||||||
slickTestCompile group: 'com.h2database', name: 'h2', version: '1.4.197'
|
slickTestCompile group: 'com.h2database', name: 'h2', version: '1.4.197'
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ apply from: "${rootDir}/gradle/test-with-scala.gradle"
|
||||||
dependencies {
|
dependencies {
|
||||||
testCompile project(':dd-trace-api')
|
testCompile project(':dd-trace-api')
|
||||||
testCompile project(':dd-trace-ot')
|
testCompile project(':dd-trace-ot')
|
||||||
testCompile group: 'org.scala-lang', name: 'scala-library', version: '2.11.12'
|
testCompile deps.scala
|
||||||
|
|
||||||
testCompile project(':dd-java-agent:testing')
|
testCompile project(':dd-java-agent:testing')
|
||||||
testCompile project(':dd-java-agent:instrumentation:java-concurrent')
|
testCompile project(':dd-java-agent:instrumentation:java-concurrent')
|
||||||
|
|
|
@ -35,7 +35,7 @@ dependencies {
|
||||||
annotationProcessor deps.autoservice
|
annotationProcessor deps.autoservice
|
||||||
implementation deps.autoservice
|
implementation deps.autoservice
|
||||||
|
|
||||||
testCompile group: 'org.scala-lang', name: 'scala-library', version: '2.11.12'
|
testCompile deps.scala
|
||||||
testCompile group: 'com.typesafe.play', name: 'play_2.11', version: '2.4.0'
|
testCompile group: 'com.typesafe.play', name: 'play_2.11', version: '2.4.0'
|
||||||
testCompile group: 'com.typesafe.play', name: 'play-test_2.11', version: '2.4.0'
|
testCompile group: 'com.typesafe.play', name: 'play-test_2.11', version: '2.4.0'
|
||||||
testCompile project(':dd-java-agent:testing')
|
testCompile project(':dd-java-agent:testing')
|
||||||
|
@ -44,7 +44,7 @@ dependencies {
|
||||||
testCompile project(':dd-java-agent:instrumentation:akka-http-10.0')
|
testCompile project(':dd-java-agent:instrumentation:akka-http-10.0')
|
||||||
testCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.6.0'
|
testCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.6.0'
|
||||||
|
|
||||||
latestDepTestCompile group: 'org.scala-lang', name: 'scala-library', version: '2.11.12'
|
latestDepTestCompile deps.scala
|
||||||
latestDepTestCompile group: 'com.typesafe.play', name: 'play_2.11', version: '2.6.0'
|
latestDepTestCompile group: 'com.typesafe.play', name: 'play_2.11', version: '2.6.0'
|
||||||
latestDepTestCompile group: 'com.typesafe.play', name: 'play-test_2.11', version: '2.6.0'
|
latestDepTestCompile group: 'com.typesafe.play', name: 'play-test_2.11', version: '2.6.0'
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,7 @@ ext {
|
||||||
logback : "1.2.3",
|
logback : "1.2.3",
|
||||||
lombok : "1.18.2",
|
lombok : "1.18.2",
|
||||||
bytebuddy : "1.9.3",
|
bytebuddy : "1.9.3",
|
||||||
|
scala : "2.11.12",
|
||||||
]
|
]
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -57,5 +58,6 @@ ext {
|
||||||
dependencies.create(group: 'org.slf4j', name: 'jcl-over-slf4j', version: versions.slf4j),
|
dependencies.create(group: 'org.slf4j', name: 'jcl-over-slf4j', version: versions.slf4j),
|
||||||
dependencies.create(group: 'org.slf4j', name: 'jul-to-slf4j', version: versions.slf4j),
|
dependencies.create(group: 'org.slf4j', name: 'jul-to-slf4j', version: versions.slf4j),
|
||||||
],
|
],
|
||||||
|
scala : dependencies.create(group: 'org.scala-lang', name: 'scala-library', version: "${versions.scala}"),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue