We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4039ce commit 911b34dCopy full SHA for 911b34d
1 file changed
examples/build.gradle.kts
@@ -18,14 +18,10 @@ java {
18
}
19
20
tasks.withType<JavaExec> {
21
- jvmArgs("--enable-native-access=ALL-UNNAMED", "--add-modules", "jdk.incubator.vector")
+ jvmArgs("--enable-native-access=ALL-UNNAMED")
22
23
24
tasks.withType<JavaCompile> {
25
- options.compilerArgs.addAll(listOf(
26
- "--add-modules", "jdk.incubator.vector"
27
- ))
28
-
29
val processorOutput = rootProject.layout.buildDirectory.dir("classes/java/processor").get().asFile
30
options.annotationProcessorPath = files(processorOutput) + rootProject.configurations.runtimeClasspath.get()
31
0 commit comments