Skip to content

Commit a4a7841

Browse files
committed
Add new kotlin-dev repo url
1 parent 3376a2d commit a4a7841

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

integration-testing/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ buildscript {
3232
repositories {
3333
mavenLocal()
3434
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
35+
maven { url "https://redirector.kotlinlang.org/maven/dev" }
3536
}
3637
}
3738

@@ -44,6 +45,7 @@ plugins {
4445
repositories {
4546
if (build_snapshot_train) {
4647
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
48+
maven { url "https://redirector.kotlinlang.org/maven/dev" }
4749
}
4850
mavenLocal()
4951
mavenCentral()

integration-testing/java8Test/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
repositories {
66
mavenCentral()
77
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev")
8+
maven("https://redirector.kotlinlang.org/maven/dev")
89
// Coroutines from the outer project are published by previous CI buils step
910
mavenLocal()
1011
}

integration-testing/jpmsTest/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ val coroutines_version: String by project
88
repositories {
99
if (project.properties["build_snapshot_train"]?.toString()?.toBoolean() == true) {
1010
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev")
11+
maven("https://redirector.kotlinlang.org/maven/dev")
1112
}
1213
mavenLocal()
1314
mavenCentral()

integration-testing/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pluginManagement {
33
mavenCentral()
44
maven { url "https://plugins.gradle.org/m2/" }
55
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
6+
maven { url "https://redirector.kotlinlang.org/maven/dev" }
67
mavenLocal()
78
}
89
}

integration-testing/smokeTest/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
repositories {
66
mavenCentral()
77
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
8+
maven { url "https://redirector.kotlinlang.org/maven/dev" }
89
// Coroutines from the outer project are published by previous CI buils step
910
mavenLocal()
1011
}

0 commit comments

Comments
 (0)