-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
bld.downloadExtensionJavadoc=false | ||
bld.downloadExtensionSources=true | ||
bld.downloadLocation= | ||
bld.extension-pitest=com.uwyn.rife2:bld-pitest:1.0.0 | ||
bld.extension-pitest=com.uwyn.rife2:bld-pitest:1.0.1 | ||
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS | ||
bld.sourceDirectories= | ||
bld.version=2.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ public class PitestOperationBuild extends Project { | |
public PitestOperationBuild() { | ||
pkg = "rife.bld.extension"; | ||
name = "PitestExtension"; | ||
version = version(1, 0, 0); | ||
version = version(1, 0, 1); | ||
|
||
javaRelease = 17; | ||
|
||
|
@@ -62,28 +62,26 @@ public PitestOperationBuild() { | |
|
||
publishOperation() | ||
.repository(version.isSnapshot() ? repository("rife2-snapshot") : repository("rife2")) | ||
.repository(repository("github")) | ||
.info() | ||
.groupId("com.uwyn.rife2") | ||
.artifactId("bld-pitest") | ||
.description("PIT Mutation Testing Extension for bld") | ||
.url("https://github.com/rife2/bld-pitest") | ||
.developer( | ||
new PublishDeveloper() | ||
.id("ethauvin") | ||
.name("Erik C. Thauvin") | ||
.email("[email protected]") | ||
.url("https://erik.thauvin.net/") | ||
.developer(new PublishDeveloper() | ||
.id("ethauvin") | ||
.name("Erik C. Thauvin") | ||
.email("[email protected]") | ||
.url("https://erik.thauvin.net/") | ||
) | ||
.license( | ||
new PublishLicense() | ||
.name("The Apache License, Version 2.0") | ||
.url("https://www.apache.org/licenses/LICENSE-2.0.txt") | ||
.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-pitest.git") | ||
.developerConnection("scm:git:[email protected]:rife2/bld-pitest.git") | ||
.url("https://github.com/rife2/bld-pitest") | ||
.scm(new PublishScm() | ||
.connection("scm:git:https://github.com/rife2/bld-pitest.git") | ||
.developerConnection("scm:git:[email protected]:rife2/bld-pitest.git") | ||
.url("https://github.com/rife2/bld-pitest") | ||
) | ||
.signKey(property("sign.key")) | ||
.signPassphrase(property("sign.passphrase")); | ||
|