mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 22:20:35 -04:00
OpenJFX is an open source, next generation client application platform for desktop and embedded systems based on JavaSE. It is a collaborative effort by many individuals and companies with the goal of producing a modern, efficient, and fully featured toolkit for developing rich client applications. WWW: http://openjdk.java.net/projects/openjfx/ PR: 207566 Submitted by: Tobias Kortkamp <t@tobik.me>
17 lines
853 B
Groovy
17 lines
853 B
Groovy
--- buildSrc/build.gradle.orig 2016-02-28 12:54:50 UTC
|
|
+++ buildSrc/build.gradle
|
|
@@ -81,11 +81,9 @@ sourceSets {
|
|
getConfigurations().create("antlr3");
|
|
|
|
dependencies {
|
|
- compile group: "org.antlr", name: "antlr", version: "3.1.3"
|
|
- testCompile group: "junit", name: "junit", version: "4.8.2"
|
|
- antlr3 group: "org.antlr", name: "antlr-runtime", version: "3.1.3"
|
|
- antlr3 group: "org.antlr", name: "stringtemplate", version: "3.2"
|
|
- antlr3 group: "org.antlr", name: "antlr", version: "3.1.3"
|
|
+ compile files("%%PREFIX%%/share/java/classes/antlr-3.5.2-complete.jar")
|
|
+ testCompile files("%%PREFIX%%/share/java/classes/junit4.jar")
|
|
+ antlr3 files("%%PREFIX%%/share/java/classes/antlr-3.5.2-complete.jar")
|
|
}
|
|
|
|
// At the moment the ASM library shipped with Gradle that is used to
|