@@ -7,6 +7,7 @@ apply plugin: 'call-site-instrumentation'
7
7
// version is not inherited
8
8
addTestSuite(' baseTest' )
9
9
addTestSuite(' latestDepTest' )
10
+ addTestSuiteForDir(' latestPekko10Test' , ' latestDepTest' )
10
11
addTestSuite(' iastTest' )
11
12
addTestSuiteForDir ' latestDepIastTest' , ' iastTest'
12
13
@@ -32,13 +33,14 @@ muzzle {
32
33
33
34
configurations {
34
35
iastTestImplementation. extendsFrom(baseTestImplementation)
35
-
36
36
latestDepIastTestRuntimeOnly. extendsFrom(iastTestRuntimeOnly)
37
37
}
38
38
39
39
sourceSets {
40
40
latestDepTest. groovy. srcDir sourceSets. baseTest. groovy
41
41
latestDepTest. scala. srcDir sourceSets. baseTest. scala
42
+ latestPekko10Test. groovy. srcDir sourceSets. baseTest. groovy
43
+ latestPekko10Test. scala. srcDir sourceSets. baseTest. scala
42
44
}
43
45
44
46
dependencies {
@@ -66,10 +68,14 @@ dependencies {
66
68
iastTestRuntimeOnly project(' :dd-java-agent:instrumentation:jackson-core:jackson-core-2.12' )
67
69
iastTestRuntimeOnly project(' :dd-java-agent:instrumentation:iast-instrumenter' )
68
70
71
+ latestPekko10TestImplementation libs. scala213
72
+ latestPekko10TestImplementation group : ' org.apache.pekko' , name : ' pekko-http_2.13' , version : ' 1.0.+'
73
+ latestPekko10TestImplementation group : ' org.apache.pekko' , name : ' pekko-stream_2.13' , version : ' 1.0.+'
74
+ latestPekko10TestImplementation group : ' org.scala-lang.modules' , name : ' scala-java8-compat_2.13' , version : ' 1.+'
75
+
69
76
latestDepTestImplementation libs. scala213
70
- // Limit version to 1.0+: https://datadoghq.atlassian.net/browse/AIDM-158
71
- latestDepTestImplementation group : ' org.apache.pekko' , name : ' pekko-http_2.13' , version : ' 1.0.+'
72
- latestDepTestImplementation group : ' org.apache.pekko' , name : ' pekko-stream_2.13' , version : ' 1.0.+'
77
+ latestDepTestImplementation group : ' org.apache.pekko' , name : ' pekko-http_2.13' , version : ' 1.+'
78
+ latestDepTestImplementation group : ' org.apache.pekko' , name : ' pekko-stream_2.13' , version : ' 1.+'
73
79
latestDepTestImplementation group : ' org.scala-lang.modules' , name : ' scala-java8-compat_2.13' , version : ' 1.+'
74
80
75
81
latestDepIastTestImplementation libs. scala213
@@ -100,3 +106,8 @@ compileLatestDepTestGroovy {
100
106
classpath = classpath. plus(files(compileLatestDepTestScala. destinationDirectory))
101
107
dependsOn " compileLatestDepTestScala"
102
108
}
109
+
110
+ compileLatestPekko10TestGroovy {
111
+ classpath = classpath. plus(files(compileLatestDepTestScala. destinationDirectory))
112
+ dependsOn " compileLatestDepTestScala"
113
+ }
0 commit comments