Skip to content

Commit

Permalink
ci: release notes fix
Browse files Browse the repository at this point in the history
  • Loading branch information
driver733 committed May 14, 2020
1 parent 2a95425 commit d71b4d5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ allprojects {

nexusPublishing {
repositories {
packageGroup.set("com.driver733")
sonatype {
if (extra.has("ossSonatypeUsername")) {
username.set(extra["ossSonatypeUsername"] as String)
Expand All @@ -29,21 +30,22 @@ allprojects {
password.set(extra["ossSonatypePassword"] as String)
}
}
packageGroup.set("com.driver733")
}
}

}


nexusStaging {
packageGroup = "com.driver733"
numberOfRetries = 100
delayBetweenRetriesInMillis = 6000
if (extra.has("ossSonatypeUsername")) {
username = extra["ossSonatypeUsername"] as String
}
if (extra.has("ossSonatypePassword")) {
password = extra["ossSonatypePassword"] as String
}
packageGroup = "com.driver733"
}

subprojects.filter { it.name != "example" }.onEach {
Expand Down

0 comments on commit d71b4d5

Please sign in to comment.