Skip to content

Commit 6a447f0

Browse files
committed
incremental update Sat 11 Nov 2023 09:38:35 AST
1 parent e7d0119 commit 6a447f0

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

build.gradle

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,24 @@ dependencies {
1515

1616

1717
compileJava {
18-
options.compilerArgs.addAll(['--release', '19'])
1918
options.compilerArgs.addAll(['--enable-preview'])
20-
options.compilerArgs.addAll(['--add-modules', 'jdk.incubator.concurrent'])
2119
}
2220

2321
compileTestJava {
24-
options.compilerArgs.addAll(['--release', '19'])
2522
options.compilerArgs.addAll(['--enable-preview'])
26-
options.compilerArgs.addAll(['--add-modules', 'jdk.incubator.concurrent'])
2723
}
2824

2925
test {
3026
useJUnitPlatform()
31-
jvmArgs('--enable-preview','--add-modules', 'jdk.incubator.concurrent')
27+
jvmArgs('--enable-preview')
3228

3329
testLogging {
3430
events "passed", "skipped", "failed"
3531
}
3632
}
3733

3834
application {
39-
applicationDefaultJvmArgs = ['--enable-preview',
40-
'--add-modules', 'jdk.incubator.concurrent']
35+
applicationDefaultJvmArgs = ['--enable-preview']
4136
}
4237

4338
}

0 commit comments

Comments
 (0)