Skip to content

Commit cd48dde

Browse files
committed
Using s01 for snapshots
1 parent 4a1a48b commit cd48dde

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ project/boot/
1515
project/plugins/project/
1616
credentials.sbt
1717
/.idea/
18+
.DS_Store
19+

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Please create issues on the main kotest [board](https://github.com/kotest/kotest
1010
[<img src="https://img.shields.io/maven-central/v/io.kotest.extensions/kotest-extensions-pitest.svg?label=latest%20release"/>](http://search.maven.org/#search|ga|1|kotest-extensions-pitest)
1111
![GitHub](https://img.shields.io/github/license/kotest/kotest-extensions-pitest)
1212
[![kotest @ kotlinlang.slack.com](https://img.shields.io/static/v1?label=kotlinlang&message=kotest&color=blue&logo=slack)](https://kotlinlang.slack.com/archives/CT0G9SD7Z)
13-
[<img src="https://img.shields.io/nexus/s/https/oss.sonatype.org/io.kotest.extensions/kotest-extensions-pitest.svg?label=latest%20snapshot"/>](https://oss.sonatype.org/content/repositories/snapshots/io/kotest/extensions/kotest-extensions-pitest/)
13+
[<img src="https://img.shields.io/nexus/s/https/s01.oss.sonatype.org/io.kotest.extensions/kotest-extensions-pitest.svg?label=latest%20snapshot"/>](https://oss.sonatype.org/content/repositories/snapshots/io/kotest/extensions/kotest-extensions-pitest/)
1414

1515
## Changelog
1616

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ repositories {
4141
mavenLocal()
4242
mavenCentral()
4343
maven {
44-
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
44+
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots")
4545
}
4646
}
4747

buildSrc/src/main/kotlin/Ci.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ object Ci {
22

33
// this is the version used for building snapshots
44
// .GITHUB_RUN_NUMBER-snapshot will be appended
5-
private const val snapshotBase = "1.0.0"
5+
private const val snapshotBase = "1.2.0"
66

77
private val githubRunNumber = System.getenv("GITHUB_RUN_NUMBER")
88

publish.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ java {
4141
publishing {
4242
repositories {
4343
maven {
44-
val releasesRepoUrl = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
45-
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/")
44+
val releasesRepoUrl = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
45+
val snapshotsRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
4646
name = "deploy"
4747
url = if (Ci.isRelease) releasesRepoUrl else snapshotsRepoUrl
4848
credentials {

0 commit comments

Comments
 (0)