Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/jdk9' into jdk9
Browse files Browse the repository at this point in the history
# Conflicts:
#	build.gradle
  • Loading branch information
florian-beetz committed Jul 23, 2018
2 parents 0cd8908 + 1cbe9ac commit 88751da
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,20 @@ project.ext.install4jDir = hasProperty("install4jDir") ? getProperty("install4jD
sourceCompatibility = 9
targetCompatibility = 9
mainClassName = "org.jabref.JabRefMain"
javaModule.name ="org.jabref"

javaModule {
name = "org.jabref"
hacks {
opens "javafx.swing", "javafx.embed.swing", "org.jabref"
opens "java.desktop", "java.awt", "spin"
opens "javafx.controls", "javafx.scene.control", "org.jabref"
exports "javafx.base", "com.sun.javafx.runtime", "controlsfx"
}
}


// These are the Java version requirements we will check on each start of JabRef
ext.minRequiredJavaVersion = "1.8.0_171"
ext.minRequiredJavaVersion = "1.8.0_172"
ext.allowJava9 = true

sourceSets {
Expand Down

0 comments on commit 88751da

Please sign in to comment.