[tests] future-proofing launcher test app build script

GitOrigin-RevId: d7a968643e3bda03adc825886226fe896da1241c
This commit is contained in:
Roman Shevchenko
2024-09-12 22:55:27 +02:00
committed by intellij-monorepo-bot
parent 9f35bc136e
commit e15d9ae000

View File

@@ -21,7 +21,7 @@ dependencies {
tasks.compileJava {
@Suppress("SpellCheckingInspection")
options.compilerArgs = listOf("--add-modules=jdk.jcmd", "--add-exports=jdk.jcmd/sun.tools.jps=ALL-UNNAMED")
options.compilerArgs = listOf("-source", "17", "-target", "17", "--add-modules=jdk.jcmd", "--add-exports=jdk.jcmd/sun.tools.jps=ALL-UNNAMED")
}
task("fatJar", type = Jar::class) {