We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a23533c commit f6a5cc2Copy full SHA for f6a5cc2
build.gradle.kts
@@ -1,3 +1,5 @@
1
+import java.time.Duration
2
+
3
plugins {
4
alias(buildlibs.plugins.nexus.publish)
5
id("io.codemodder.base")
@@ -10,6 +12,10 @@ nexusPublishing {
10
12
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
11
13
}
14
15
+ transitionCheckOptions {
16
+ maxRetries.set(80) // default is 60 but we've been seeing timeouts
17
+ delayBetween.set(Duration.ofSeconds(30)) // default is 10 seconds
18
+ }
19
20
21
0 commit comments