mirror of
https://github.com/ethauvin/bld-antlr4.git
synced 2025-04-29 02:08:12 -07:00
Updated to RIFE2 and bld 1.5.17
This commit is contained in:
parent
8fe746cf75
commit
7e63bbd663
7 changed files with 36 additions and 9 deletions
|
@ -5,7 +5,10 @@
|
|||
package rife.bld.extension;
|
||||
|
||||
import rife.bld.Project;
|
||||
import rife.bld.publish.PublishDeveloper;
|
||||
import rife.bld.publish.PublishInfo;
|
||||
import rife.bld.publish.PublishLicense;
|
||||
import rife.bld.publish.PublishScm;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.List;
|
||||
|
@ -18,14 +21,29 @@ public class Antlr4Build extends Project {
|
|||
public Antlr4Build() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "Antlr4";
|
||||
version = version(0,9,5);
|
||||
version = version(0,9,6);
|
||||
javadocOptions
|
||||
.docLint(NO_MISSING)
|
||||
.link("https://rife2.github.io/rife2/");
|
||||
publishRepository = repository("rife2");
|
||||
|
||||
publishRepository = version.isSnapshot() ? repository("rife2-snapshots") : repository("rife2-releases");
|
||||
publishInfo = new PublishInfo()
|
||||
.groupId("com.uwyn.rife2")
|
||||
.artifactId("bld-antlr4")
|
||||
.description("bld extension for generating ANTLR4 grammars")
|
||||
.url("https://github.com/rife2/bld-antlr4")
|
||||
.developer(new PublishDeveloper()
|
||||
.id("gbevin")
|
||||
.name("Geert Bevin")
|
||||
.email("gbevin@uwyn.com")
|
||||
.url("https://github.com/gbevin"))
|
||||
.license(new PublishLicense()
|
||||
.name("The Apache License, Version 2.0")
|
||||
.url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
|
||||
.scm(new PublishScm()
|
||||
.connection("scm:git:https://github.com/rife2/bld-antlr4.git")
|
||||
.developerConnection("scm:git:git@github.com:rife2/bld-antlr4.git")
|
||||
.url("https://github.com/rife2/bld-antlr4"))
|
||||
.signKey(property("sign.key"))
|
||||
.signPassphrase(property("sign.passphrase"));
|
||||
|
||||
|
@ -34,7 +52,7 @@ public class Antlr4Build extends Project {
|
|||
autoDownloadPurge = true;
|
||||
repositories = List.of(MAVEN_CENTRAL,RIFE2);
|
||||
scope(compile)
|
||||
.include(dependency("com.uwyn.rife2", "rife2", version(1,5,16)))
|
||||
.include(dependency("com.uwyn.rife2", "rife2", version(1,5,17)))
|
||||
.include(dependency("org.antlr", "antlr4", version(4,11,1)));
|
||||
scope(test)
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,2)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue