2
0
Fork 0
mirror of https://github.com/ethauvin/rife2.git synced 2025-04-30 18:48:13 -07:00

Backed out temporary publishing repo changes

This commit is contained in:
Geert Bevin 2023-04-02 21:20:37 -04:00
parent 9d696eb938
commit a2d5446a8b

View file

@ -419,10 +419,10 @@ publishing {
repositories {
maven {
credentials {
username = project.properties["rife2.username"].toString()
password = project.properties["rife2.Password"].toString()
username = project.properties["ossrhUsername"].toString()
password = project.properties["ossrhPassword"].toString()
}
val releasesRepoUrl = uri("https://repo.rife2.com/releases")
val releasesRepoUrl = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
val snapshotsRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
url = if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl
}