Added GitHub repository

This commit is contained in:
Erik C. Thauvin 2024-10-27 16:05:54 -07:00
parent 7df5b39c6a
commit 248d2c3362
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -63,25 +63,23 @@ public class GeneratedVersionOperationBuild extends Project {
publishOperation() publishOperation()
.repositories(version.isSnapshot() ? repository("rife2-snapshot") : repository("rife2")) .repositories(version.isSnapshot() ? repository("rife2-snapshot") : repository("rife2"))
.repository(repository("github"))
.info() .info()
.groupId("com.uwyn.rife2") .groupId("com.uwyn.rife2")
.artifactId("bld-generated-version") .artifactId("bld-generated-version")
.description("bld Extension to Generate Project Version Data") .description("bld Extension to Generate Project Version Data")
.url("https://github.com/rife2/generated-version") .url("https://github.com/rife2/generated-version")
.developer( .developer(new PublishDeveloper()
new PublishDeveloper()
.id("ethauvin") .id("ethauvin")
.name("Erik C. Thauvin") .name("Erik C. Thauvin")
.email("erik@thauvin.net") .email("erik@thauvin.net")
.url("https://erik.thauvin.net/") .url("https://erik.thauvin.net/")
) )
.license( .license(new PublishLicense()
new PublishLicense()
.name("The Apache License, Version 2.0") .name("The Apache License, Version 2.0")
.url("https://www.apache.org/licenses/LICENSE-2.0.txt") .url("https://www.apache.org/licenses/LICENSE-2.0.txt")
) )
.scm( .scm(new PublishScm()
new PublishScm()
.connection("scm:git:https://github.com/rife2/generated-version.git") .connection("scm:git:https://github.com/rife2/generated-version.git")
.developerConnection("scm:git:git@github.com:rife2/generated-version.git") .developerConnection("scm:git:git@github.com:rife2/generated-version.git")
.url("https://github.com/rife2/generated-version") .url("https://github.com/rife2/generated-version")