Skip to content

Commit

Permalink
Fixed github repo + info in pom.xml (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
nulls authored Aug 15, 2023
1 parent 7d21f07 commit 513acb8
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ fun Project.configureGitHubPublishing() {
repositories {
maven {
name = "GitHub"
url = uri("https://maven.pkg.github.com/saveourtool/osv4k")
url = uri("https://maven.pkg.github.com/saveourtool/cosv4k")
credentials {
username = findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR")
password = findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
Expand Down Expand Up @@ -153,7 +153,7 @@ fun Project.configurePublications() {
pom {
name.set(project.name)
description.set(project.description ?: project.name)
url.set("https://github.com/saveourtool/osv4k")
url.set("https://github.com/saveourtool/cosv4k")
licenses {
license {
name.set("MIT License")
Expand All @@ -169,9 +169,9 @@ fun Project.configurePublications() {
}
}
scm {
url.set("https://github.com/saveourtool/osv4k")
connection.set("scm:git:https://github.com/saveourtool/osv4k.git")
developerConnection.set("scm:git:[email protected]:saveourtool/osv4k.git")
url.set("https://github.com/saveourtool/cosv4k")
connection.set("scm:git:https://github.com/saveourtool/cosv4k.git")
developerConnection.set("scm:git:[email protected]:saveourtool/cosv4k.git")
}
}
}
Expand Down

0 comments on commit 513acb8

Please sign in to comment.