diff --git a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CopySamples.kt b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CopySamples.kt index e7b8baf0142..4507d46cac5 100644 --- a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CopySamples.kt +++ b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CopySamples.kt @@ -58,7 +58,6 @@ open class CopySamples : Copy() { } private val replacements = listOf( - "https://dl.bintray.com/kotlin/kotlin-eap" to "https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-eap", "https://plugins.gradle.org/m2" to "https://cache-redirector.jetbrains.com/plugins.gradle.org/m2", "mavenCentral()" to "maven { setUrl(\"https://cache-redirector.jetbrains.com/maven-central\") }", "jcenter()" to "maven { setUrl(\"https://cache-redirector.jetbrains.com/jcenter\") }" diff --git a/kotlin-native/samples/androidNativeActivity/build.gradle.kts b/kotlin-native/samples/androidNativeActivity/build.gradle.kts index 7f8aa1e9cdf..a05ed00cf8f 100644 --- a/kotlin-native/samples/androidNativeActivity/build.gradle.kts +++ b/kotlin-native/samples/androidNativeActivity/build.gradle.kts @@ -6,7 +6,6 @@ repositories { google() jcenter() mavenCentral() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } plugins { diff --git a/kotlin-native/samples/androidNativeActivity/settings.gradle.kts b/kotlin-native/samples/androidNativeActivity/settings.gradle.kts index a0d93ff10b6..ec529294611 100644 --- a/kotlin-native/samples/androidNativeActivity/settings.gradle.kts +++ b/kotlin-native/samples/androidNativeActivity/settings.gradle.kts @@ -16,6 +16,5 @@ pluginManagement { google() jcenter() mavenCentral() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } } diff --git a/kotlin-native/samples/build.gradle.kts b/kotlin-native/samples/build.gradle.kts index 70d65e4d0fb..7311aa68dd2 100644 --- a/kotlin-native/samples/build.gradle.kts +++ b/kotlin-native/samples/build.gradle.kts @@ -1,7 +1,6 @@ buildscript { repositories { mavenCentral() - maven("https://dl.bintray.com/kotlin/kotlin-eap") val kotlinCompilerRepo: String? by rootProject kotlinCompilerRepo?.let { maven(it) } @@ -16,7 +15,6 @@ buildscript { allprojects { repositories { mavenCentral() - maven("https://dl.bintray.com/kotlin/kotlin-eap") val kotlinCompilerRepo: String? by rootProject kotlinCompilerRepo?.let { maven(it) } diff --git a/kotlin-native/samples/calculator/build.gradle b/kotlin-native/samples/calculator/build.gradle index 401b033bb5c..9bb4a4c0b9c 100644 --- a/kotlin-native/samples/calculator/build.gradle +++ b/kotlin-native/samples/calculator/build.gradle @@ -3,7 +3,6 @@ buildscript { google() jcenter() mavenCentral() - maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' } if (project.hasProperty("kotlinCompilerRepo")) { maven { setUrl(project.property("kotlinCompilerRepo")) } } @@ -20,7 +19,6 @@ allprojects { google() jcenter() mavenCentral() - maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' } if (project.hasProperty("kotlinCompilerRepo")) { maven { setUrl(project.property("kotlinCompilerRepo")) } } diff --git a/kotlin-native/samples/cocoapods/kotlin-library/build.gradle.kts b/kotlin-native/samples/cocoapods/kotlin-library/build.gradle.kts index 8e025f10c2b..dc3e8d786bb 100644 --- a/kotlin-native/samples/cocoapods/kotlin-library/build.gradle.kts +++ b/kotlin-native/samples/cocoapods/kotlin-library/build.gradle.kts @@ -5,7 +5,6 @@ plugins { repositories { jcenter() - maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") } } group = "org.jetbrains.kotlin.sample.native" diff --git a/kotlin-native/samples/cocoapods/kotlin-library/settings.gradle.kts b/kotlin-native/samples/cocoapods/kotlin-library/settings.gradle.kts index 70d18aa01e0..5a626778d67 100644 --- a/kotlin-native/samples/cocoapods/kotlin-library/settings.gradle.kts +++ b/kotlin-native/samples/cocoapods/kotlin-library/settings.gradle.kts @@ -1,9 +1,4 @@ pluginManagement { - repositories { - jcenter() - maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") } - } - resolutionStrategy { val kotlin_version: String by settings eachPlugin { diff --git a/kotlin-native/samples/html5Canvas/build.gradle.kts b/kotlin-native/samples/html5Canvas/build.gradle.kts index 41849148f89..cd8783fe9ec 100644 --- a/kotlin-native/samples/html5Canvas/build.gradle.kts +++ b/kotlin-native/samples/html5Canvas/build.gradle.kts @@ -8,7 +8,6 @@ plugins { repositories { jcenter() - mavenCentral() } val hostOs = System.getProperty("os.name") diff --git a/kotlin-native/samples/settings.gradle.kts b/kotlin-native/samples/settings.gradle.kts index a8d53216f7f..fe8efa90ec9 100644 --- a/kotlin-native/samples/settings.gradle.kts +++ b/kotlin-native/samples/settings.gradle.kts @@ -1,7 +1,6 @@ pluginManagement { repositories { mavenCentral() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } } diff --git a/kotlin-native/samples/uikit/build.gradle.kts b/kotlin-native/samples/uikit/build.gradle.kts index c7e02599e94..14cb5824654 100644 --- a/kotlin-native/samples/uikit/build.gradle.kts +++ b/kotlin-native/samples/uikit/build.gradle.kts @@ -8,7 +8,6 @@ plugins { allprojects { repositories { jcenter() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } } diff --git a/kotlin-native/samples/watchos/build.gradle.kts b/kotlin-native/samples/watchos/build.gradle.kts index d38288c9f65..4cf7955fea2 100644 --- a/kotlin-native/samples/watchos/build.gradle.kts +++ b/kotlin-native/samples/watchos/build.gradle.kts @@ -8,7 +8,6 @@ plugins { allprojects { repositories { jcenter() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } } diff --git a/kotlin-native/samples/weather_function/function/settings.gradle.kts b/kotlin-native/samples/weather_function/function/settings.gradle.kts index 96151aef755..5b7aa9ed039 100644 --- a/kotlin-native/samples/weather_function/function/settings.gradle.kts +++ b/kotlin-native/samples/weather_function/function/settings.gradle.kts @@ -4,7 +4,6 @@ pluginManagement { repositories { gradlePluginPortal() jcenter() - maven("https://dl.bintray.com/jetbrains/kotlin-native-dependencies") } // This way we can map plugin to standard maven artifact @@ -12,7 +11,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.id == "konan") { - val kotlinNativeVer = "0.7.1" + val kotlinNativeVer = "1.3.41" useModule("org.jetbrains.kotlin:kotlin-native-gradle-plugin:$kotlinNativeVer") } }