Skip to content

Commit

Permalink
Bump time to wait for sonatype to 60min (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy authored Jun 22, 2021
1 parent d3c63b2 commit 8718db8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -295,4 +295,12 @@ eclipse { project { name = ideName } }
// Call targets:
// publishToSonatype
// closeAndReleaseSonatypeStagingRepository
nexusPublishing { repositories { sonatype() } }
nexusPublishing {
transitionCheckOptions {
// default==60 (10 minutes), wait up to 60 minutes
maxRetries.set(360)
// default 10s
delayBetween.set(java.time.Duration.ofSeconds(10))
}
repositories { sonatype() }
}

0 comments on commit 8718db8

Please sign in to comment.