We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3170956 commit fa248d7Copy full SHA for fa248d7
dd-java-agent/instrumentation/vertx/vertx-web/vertx-web-5.0/build.gradle
@@ -22,12 +22,6 @@ configurations {
22
testArtifacts
23
}
24
25
-java {
26
- toolchain {
27
- languageVersion.set(JavaLanguageVersion.of(11))
28
- }
29
-}
30
-
31
// Create test artifacts so vertx-rx can reuse the server test instrumentation and base class
32
artifacts {
33
testArtifacts testJar
@@ -58,3 +52,7 @@ dependencies {
58
52
latestDepTestImplementation group: 'io.vertx', name: 'vertx-web', version: '+'
59
53
latestDepTestImplementation group: 'io.vertx', name: 'vertx-web-client', version: '+'
60
54
55
+
56
+tasks.named("compileJava", JavaCompile) {
57
+ configureCompiler(it, 11, JavaVersion.VERSION_1_8)
+}
0 commit comments