From 705bf9bf1308c4f94d2624b3e78640a4b2673d4c Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Mon, 30 Sep 2019 16:54:09 +0300 Subject: Fix repository order --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 00a026c3..f18ddafa 100644 --- a/build.gradle +++ b/build.gradle @@ -44,12 +44,12 @@ allprojects { maven { url "https://dl.bintray.com/jetbrains/markdown" } maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } maven { url "https://dl.bintray.com/kotlin/kotlin-dev" } - maven { url 'https://jitpack.io' } maven { url "https://teamcity.jetbrains.com/guestAuth/repository/download/Kotlin_dev_CompilerAllPlugins/$bundled_kotlin_compiler_version/maven" } ivy(repo) maven { url "https://kotlin.bintray.com/kotlinx" } maven { url "https://dl.bintray.com/kotlin/kotlinx" } - maven { url "https://dl.bintray.com/orangy/maven" } // TODO: remove this repository when kotlinx.cli is available in maven + maven { url "https://dl.bintray.com/orangy/maven" } // TODO: remove this repository when kotlinx.cli is available in maven + maven { url 'https://jitpack.io' } } } -- cgit