mirror of
https://github.com/ethauvin/bld-antlr4.git
synced 2025-04-29 02:08:12 -07:00
Updated to RIFE2 1.5.15
This commit is contained in:
parent
5054928580
commit
ed2f93ee9a
5 changed files with 21 additions and 14 deletions
|
@ -12,21 +12,27 @@ import java.util.List;
|
|||
|
||||
import static rife.bld.dependencies.Repository.*;
|
||||
import static rife.bld.dependencies.Scope.*;
|
||||
import static rife.bld.operations.JavadocOptions.DocLinkOption.*;
|
||||
|
||||
public class Antlr4Build extends Project {
|
||||
public Antlr4Build() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "Antlr4";
|
||||
version = version(0,9,0);
|
||||
javadocOptions.add("-Xdoclint:-missing");
|
||||
publishRepository = MAVEN_LOCAL;
|
||||
publishInfo = new PublishInfo().groupId("com.uwyn.rife2").artifactId("bld-antlr4");
|
||||
version = version(0,9,2);
|
||||
javadocOptions.docLint(NO_MISSING);
|
||||
publishRepository = repository("rife2");
|
||||
publishInfo = new PublishInfo()
|
||||
.groupId("com.uwyn.rife2")
|
||||
.artifactId("bld-antlr4")
|
||||
.signKey(properties().getValueString("sign.key"))
|
||||
.signPassphrase(properties().getValueString("sign.passphrase"));
|
||||
|
||||
javaRelease = 17;
|
||||
downloadSources = true;
|
||||
repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS);
|
||||
repositories = List.of(MAVEN_CENTRAL,RIFE2);
|
||||
scope(compile)
|
||||
.include(dependency("com.uwyn.rife2", "rife2", version(1,5,11)))
|
||||
.include(dependency("org.antlr", "antlr4", version(4,12,0)));
|
||||
.include(dependency("com.uwyn.rife2", "rife2", version(1,5,15)))
|
||||
.include(dependency("org.antlr", "antlr4", version(4,11,1)));
|
||||
scope(test)
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,2)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,9,2)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue