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 ff79486 commit 4f6f6b0Copy full SHA for 4f6f6b0
dd-java-agent/agent-ci-visibility/build.gradle
@@ -1,4 +1,6 @@
1
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
2
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
3
+import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
4
5
plugins {
6
id 'com.gradleup.shadow'
@@ -53,3 +55,11 @@ tasks.named("compileTestGroovy") {
53
55
" otherwise anonymous class has one `loadClass` accessor's signature has `java.lang.Module`"
54
56
)
57
}
58
+
59
+kotlin {
60
+ compilerOptions {
61
+ jvmTarget = JvmTarget.JVM_1_8
62
+ apiVersion = KotlinVersion.KOTLIN_1_6
63
+ languageVersion = KotlinVersion.KOTLIN_1_6
64
+ }
65
+}
0 commit comments