mirror of
https://git.freebsd.org/ports.git
synced 2025-05-28 08:56:28 -04:00
- Add new default options MEDIA and WEBKIT to enable building of the media and web modules - Take back maintainership Running e.g. AsciidocFX on FreeBSD should be possible now. PR: 218014 Reported by: Dr. Jochen Raßler <jochen.rassler@gmail.com>, mr (via mail)
18 lines
923 B
Groovy
18 lines
923 B
Groovy
--- buildSrc/build.gradle.orig 2017-07-20 23:39:54 UTC
|
|
+++ buildSrc/build.gradle
|
|
@@ -81,11 +81,10 @@ 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("/usr/local/share/java/classes/antlr-3.5.2-complete.jar")
|
|
+ testCompile files("/usr/local/share/java/classes/junit4.jar",
|
|
+ "/usr/local/share/java/classes/hamcrest.jar")
|
|
+ antlr3 files("/usr/local/share/java/classes/antlr-3.5.2-complete.jar")
|
|
}
|
|
|
|
// At the moment the ASM library shipped with Gradle that is used to
|