Skip to content

Commit eac0b07

Browse files
authored
KotlinxTrain: add mavenLocal repo (Kotlin#3599)
1 parent 79d885f commit eac0b07

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

build.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ buildscript {
4242
}
4343
}
4444

45+
if (using_snapshot_version) {
46+
repositories {
47+
mavenLocal()
48+
}
49+
}
50+
4551
repositories {
4652
mavenCentral()
4753
maven { url "https://plugins.gradle.org/m2/" }
@@ -97,6 +103,12 @@ allprojects {
97103
kotlin_version = rootProject.properties['kotlin_snapshot_version']
98104
}
99105

106+
if (using_snapshot_version) {
107+
repositories {
108+
mavenLocal()
109+
}
110+
}
111+
100112
ext.unpublished = unpublished
101113

102114
// This project property is set during nightly stress test

0 commit comments

Comments
 (0)