Skip to content

Commit 1f6b44d

Browse files
committed
Restore support for building with kotlinSnapshot
1 parent a518696 commit 1f6b44d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ allprojects {
33
}
44

55
buildscript {
6+
if (System.properties['kotlinSnapshot'] != null) {
7+
ext.kotlin_version = '1.1-SNAPSHOT'
8+
repositories {
9+
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
10+
}
11+
}
612
repositories {
713
jcenter()
814
}

0 commit comments

Comments
 (0)