mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 02:00:30 -04:00
Add a missing build dependency on junit to the Makefile, and fix the path to Hamcrest in build.gradle. Also, reset MAINTAINER by request of the current maintainer. PR: 215677 Reviewed by: brd, Tobias Kortkamp Approved by: brd (ports) Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D9005
18 lines
923 B
Groovy
18 lines
923 B
Groovy
--- buildSrc/build.gradle.orig 2016-02-28 12:54:50 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("%%PREFIX%%/share/java/classes/antlr-3.5.2-complete.jar")
|
|
+ testCompile files("%%PREFIX%%/share/java/classes/junit4.jar",
|
|
+ "%%PREFIX%%/share/java/classes/hamcrest.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
|