Skip to content

Commit d568ee4

Browse files
committed
Version 1.0.1
1 parent 393d873 commit d568ee4

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bld.downloadExtensionJavadoc=false
22
bld.downloadExtensionSources=true
33
bld.downloadLocation=
4-
bld.extension-pitest=com.uwyn.rife2:bld-pitest:1.0.0
4+
bld.extension-pitest=com.uwyn.rife2:bld-pitest:1.0.1
55
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS
66
bld.sourceDirectories=
77
bld.version=2.1.0

src/bld/java/rife/bld/extension/PitestOperationBuild.java

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class PitestOperationBuild extends Project {
3333
public PitestOperationBuild() {
3434
pkg = "rife.bld.extension";
3535
name = "PitestExtension";
36-
version = version(1, 0, 0);
36+
version = version(1, 0, 1);
3737

3838
javaRelease = 17;
3939

@@ -62,28 +62,26 @@ public PitestOperationBuild() {
6262

6363
publishOperation()
6464
.repository(version.isSnapshot() ? repository("rife2-snapshot") : repository("rife2"))
65+
.repository(repository("github"))
6566
.info()
6667
.groupId("com.uwyn.rife2")
6768
.artifactId("bld-pitest")
6869
.description("PIT Mutation Testing Extension for bld")
6970
.url("https://github.com/rife2/bld-pitest")
70-
.developer(
71-
new PublishDeveloper()
72-
.id("ethauvin")
73-
.name("Erik C. Thauvin")
74-
.email("erik@thauvin.net")
75-
.url("https://erik.thauvin.net/")
71+
.developer(new PublishDeveloper()
72+
.id("ethauvin")
73+
.name("Erik C. Thauvin")
74+
.email("erik@thauvin.net")
75+
.url("https://erik.thauvin.net/")
7676
)
77-
.license(
78-
new PublishLicense()
79-
.name("The Apache License, Version 2.0")
80-
.url("https://www.apache.org/licenses/LICENSE-2.0.txt")
77+
.license(new PublishLicense()
78+
.name("The Apache License, Version 2.0")
79+
.url("https://www.apache.org/licenses/LICENSE-2.0.txt")
8180
)
82-
.scm(
83-
new PublishScm()
84-
.connection("scm:git:https://github.com/rife2/bld-pitest.git")
85-
.developerConnection("scm:git:git@github.com:rife2/bld-pitest.git")
86-
.url("https://github.com/rife2/bld-pitest")
81+
.scm(new PublishScm()
82+
.connection("scm:git:https://github.com/rife2/bld-pitest.git")
83+
.developerConnection("scm:git:git@github.com:rife2/bld-pitest.git")
84+
.url("https://github.com/rife2/bld-pitest")
8785
)
8886
.signKey(property("sign.key"))
8987
.signPassphrase(property("sign.passphrase"));

0 commit comments

Comments
 (0)