We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b122803 commit a1db70dCopy full SHA for a1db70d
dd-java-agent/instrumentation/axis-2/build.gradle
@@ -1,3 +1,7 @@
1
+ext {
2
+ latestDepTestMinJavaVersionForTests = JavaVersion.VERSION_11
3
+ latestDepForkedTestMinJavaVersionForTests = JavaVersion.VERSION_11
4
+}
5
muzzle {
6
pass {
7
group = "org.apache.axis2"
@@ -19,6 +23,18 @@ configurations.all {
19
23
}
20
24
21
25
26
+[compileLatestDepForkedTestGroovy, compileLatestDepTestGroovy].each {
27
+ it.configure {
28
+ javaLauncher = getJavaLauncherFor(11)
29
+ }
30
31
+
32
+[compileLatestDepForkedTestJava, compileLatestDepTestJava].each {
33
34
+ setJavaVersion(it, 11)
35
36
37
22
38
dependencies {
39
compileOnly group: 'org.apache.axis2', name: 'axis2-kernel', version: '1.3'
40
0 commit comments