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 bed7734 commit d17077bCopy full SHA for d17077b
build.gradle
@@ -198,6 +198,9 @@ subprojects {
198
tasks.test {
199
// Configure JVM Options
200
jvmArgs(getProperty('toolchain.launcher.jvmargs').toString().split(' '))
201
+ if ( project.hasProperty( 'test.jdk.launcher.args' ) ) {
202
+ jvmArgs( project.getProperty( 'test.jdk.launcher.args' ).toString().split( ' ' ) )
203
+ }
204
}
205
206
// Display version of Java tools
0 commit comments