Skip to content

Commit 586af36

Browse files
author
Adrian Tosca
committed
increase sonatype deploy timeouts
1 parent c76ba38 commit 586af36

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# typeid-kotlin
22
![Build Status](https://github.com/aleris/typeid-kotlin/actions/workflows/build-on-push.yml/badge.svg)
3-
![Current Version](https://img.shields.io/badge/Version-0.0.13-blue)
3+
![Current Version](https://img.shields.io/badge/Version-0.0.14-blue)
44

55

66
## A Kotlin implementation of [TypeID](https://github.com/jetpack-io/typeid).
@@ -25,14 +25,14 @@ To use with Maven:
2525
<dependency>
2626
<groupId>earth.adi</groupId>
2727
<artifactId>typeid-kotlin</artifactId>
28-
<version>0.0.13</version>
28+
<version>0.0.14</version>
2929
</dependency>
3030
```
3131

3232
To use via Gradle:
3333

3434
```kotlin
35-
implementation("earth.adi:typeid-kotlin:0.0.13")
35+
implementation("earth.adi:typeid-kotlin:0.0.14")
3636
```
3737

3838

build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515

1616
group = "earth.adi"
1717

18-
version = "0.0.13"
18+
version = "0.0.14"
1919

2020
repositories { mavenCentral() }
2121

@@ -213,6 +213,9 @@ jreleaser {
213213
active.set(org.jreleaser.model.Active.ALWAYS)
214214
url.set("https://central.sonatype.com/api/v1/publisher")
215215
stagingRepository(stagingDir.get().toString())
216+
connectTimeout.set(120)
217+
retryDelay.set(30)
218+
readTimeout.set(180)
216219
}
217220
}
218221
}

0 commit comments

Comments
 (0)