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 0782d95 commit 62f4162Copy full SHA for 62f4162
dd-java-agent/instrumentation/junit-5.3/junit-5.8/build.gradle
@@ -23,6 +23,10 @@ muzzle {
23
}
24
25
26
+ext {
27
+ latestDepTestMinJavaVersionForTests = JavaVersion.VERSION_17
28
+}
29
+
30
addTestSuiteForDir('latestDepTest', 'test')
31
32
dependencies {
@@ -52,3 +56,10 @@ configurations.matching({ it.name.startsWith('test') }).each({
52
56
force group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.12.0'
53
57
54
58
})
59
60
+tasks.named("compileLatestDepTestJava").configure {
61
+ setJavaVersion(it, 17)
62
+ sourceCompatibility = JavaVersion.VERSION_1_8
63
+ targetCompatibility = JavaVersion.VERSION_1_8
64
65
0 commit comments