Skip to content

Commit 98639dc

Browse files
committed
fix(jreleaser): increase timeouts before jrelease fails
1 parent 46bc772 commit 98639dc

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

build.gradle.kts

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,18 @@ dependencies {
2727
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.0")
2828
implementation("com.squareup.okhttp3:okhttp:4.12.0")
2929

30-
implementation("org.slf4j:slf4j-api:2.0.9")
31-
testRuntimeOnly("org.slf4j:slf4j-simple:2.0.9")
30+
implementation("org.slf4j:slf4j-api:2.0.17")
31+
testRuntimeOnly("org.slf4j:slf4j-simple:2.0.17")
3232

3333
testImplementation("org.mockito:mockito-inline:4.11.0")
34-
testImplementation(platform("org.junit:junit-bom:5.10.2"))
35-
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
36-
37-
compileOnly("org.projectlombok:lombok:1.18.30")
38-
annotationProcessor("org.projectlombok:lombok:1.18.30")
39-
testCompileOnly("org.projectlombok:lombok:1.18.30")
40-
testAnnotationProcessor("org.projectlombok:lombok:1.18.30")
34+
testImplementation(platform("org.junit:junit-bom:5.13.4"))
35+
testImplementation("org.junit.jupiter:junit-jupiter:5.13.4")
36+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.3")
37+
38+
compileOnly("org.projectlombok:lombok:1.18.42")
39+
annotationProcessor("org.projectlombok:lombok:1.18.42")
40+
testCompileOnly("org.projectlombok:lombok:1.18.42")
41+
testAnnotationProcessor("org.projectlombok:lombok:1.18.42")
4142
}
4243

4344
tasks.test {
@@ -142,6 +143,8 @@ configure<org.jreleaser.gradle.plugin.JReleaserExtension> {
142143
active.set(org.jreleaser.model.Active.RELEASE)
143144
url = "https://central.sonatype.com/api/v1/publisher"
144145
stagingRepository(releasesRepoUrl.get().asFile.path)
146+
retryDelay = 30
147+
maxRetries = 100
145148
}
146149
}
147150
nexus2 {

0 commit comments

Comments
 (0)