Merge pull request #1805 from ripcurlx/remove-unnecessary-java-module-config

Remove java 9 module configuration
This commit is contained in:
Christoph Atteneder 2018-10-23 18:17:42 +02:00 committed by GitHub
commit 62b4b59895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 26 deletions

View File

@ -85,12 +85,3 @@ dependencies {
compile "org.openjfx:javafx-graphics:11:$platform"
compile "org.openjfx:javafx-controls:11:$platform"
}
compileJava {
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'javafx.controls'
]
}
}

View File

@ -75,23 +75,6 @@ dependencies {
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
}
compileJava {
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'javafx.controls'
]
}
}
run {
doFirst {
jvmArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'javafx.controls'
]
}
}
test {
systemProperty 'jdk.attach.allowAttachSelf', true