From 18ae8b231126c39bc3374b70aac4935bb11f0299 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Mon, 31 Oct 2016 15:55:23 +0700 Subject: [PATCH] build: switch to Sonatype snapshots repo for kotlin-compiler it is updated automatically by every successful build --- backend.native/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend.native/build.gradle b/backend.native/build.gradle index 4dd9aa793f3..af76e5a4948 100644 --- a/backend.native/build.gradle +++ b/backend.native/build.gradle @@ -13,14 +13,14 @@ apply plugin: 'java' apply plugin: 'kotlin' apply plugin: org.jetbrains.kotlin.NativeInteropPlugin -String kotlinCompilerModule = 'org.jetbrains.kotlin:kotlin-compiler:1.1.0-dev-4137' +String kotlinCompilerModule = 'org.jetbrains.kotlin:kotlin-compiler:1.1-20161025.164748-245' // (gets applied to this project and all its subprojects) allprojects { repositories { mavenCentral() maven { - url "http://dl.bintray.com/kotlin/kotlin-dev" + url 'http://oss.sonatype.org/content/repositories/snapshots' } }