Skip to content

Commit 911b34d

Browse files
committed
remove vector api from examples
1 parent a4039ce commit 911b34d

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

examples/build.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,10 @@ java {
1818
}
1919

2020
tasks.withType<JavaExec> {
21-
jvmArgs("--enable-native-access=ALL-UNNAMED", "--add-modules", "jdk.incubator.vector")
21+
jvmArgs("--enable-native-access=ALL-UNNAMED")
2222
}
2323

2424
tasks.withType<JavaCompile> {
25-
options.compilerArgs.addAll(listOf(
26-
"--add-modules", "jdk.incubator.vector"
27-
))
28-
2925
val processorOutput = rootProject.layout.buildDirectory.dir("classes/java/processor").get().asFile
3026
options.annotationProcessorPath = files(processorOutput) + rootProject.configurations.runtimeClasspath.get()
3127
}

0 commit comments

Comments
 (0)