Skip to content

Commit

Permalink
Merge pull request #84 from InflationX/cj/publishing
Browse files Browse the repository at this point in the history
fix url
  • Loading branch information
chrisjenx committed Apr 3, 2023
2 parents fc1a2f5 + 4a19766 commit a755bf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viewpump/build.gradle.kts
Expand Up @@ -59,10 +59,10 @@ publishing {
maven {
name = "sonatype"
val releaseRepoUrl = uri(
"https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
"https://oss.sonatype.org/service/local/staging/deploy/maven2/"
)
val snapshotRepoUrl = uri(
"https://s01.oss.sonatype.org/content/repositories/snapshots/"
"https://oss.sonatype.org/content/repositories/snapshots/"
)
url = if (version.toString().endsWith("SNAPSHOT")) snapshotRepoUrl else releaseRepoUrl
credentials {
Expand Down

0 comments on commit a755bf4

Please sign in to comment.