diff options
-rw-r--r-- | core/build.gradle | 6 | ||||
-rw-r--r-- | dokka-gradle-plugin/build.gradle | 4 | ||||
-rw-r--r-- | gradle.properties | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/core/build.gradle b/core/build.gradle index 28e1f895..48d1361c 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -10,6 +10,9 @@ buildscript { } repositories { jcenter() + maven { + url "https://dl.bintray.com/kotlin/kotlin-eap" + } } } @@ -23,6 +26,9 @@ sourceCompatibility = 1.5 repositories { mavenCentral() + maven { + url "https://dl.bintray.com/kotlin/kotlin-eap" + } } configurations { diff --git a/dokka-gradle-plugin/build.gradle b/dokka-gradle-plugin/build.gradle index 94786774..28bbc8b2 100644 --- a/dokka-gradle-plugin/build.gradle +++ b/dokka-gradle-plugin/build.gradle @@ -6,7 +6,7 @@ buildscript { mavenCentral() jcenter() maven { - url 'http://oss.sonatype.org/content/repositories/snapshots' + url "https://dl.bintray.com/kotlin/kotlin-eap" } } dependencies { @@ -25,7 +25,7 @@ sourceCompatibility = 1.6 repositories { mavenCentral() maven { - url 'http://oss.sonatype.org/content/repositories/snapshots' + url "https://dl.bintray.com/kotlin/kotlin-eap" } } diff --git a/gradle.properties b/gradle.properties index 8b0628b0..17f51957 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -kotlin_version=1.0.0-beta-4584 +kotlin_version=1.0.0-rc-1007 dokka_version=0.9.4 |