diff options
-rw-r--r-- | build.gradle.kts | 1 | ||||
-rw-r--r-- | integration-tests/gradle/projects/template.root.gradle.kts | 1 | ||||
-rw-r--r-- | integration-tests/gradle/projects/template.settings.gradle.kts | 1 | ||||
-rw-r--r-- | integration-tests/maven/projects/it-maven/pom.xml | 4 | ||||
-rw-r--r-- | settings.gradle.kts | 3 |
5 files changed, 9 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 0d56106c..cae9ecca 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,6 +28,7 @@ allprojects { repositories { jcenter() mavenCentral() + maven(url = "https://dl.bintray.com/kotlin/kotlin-eap") maven(url = "https://dl.bintray.com/kotlin/kotlin-dev") } } diff --git a/integration-tests/gradle/projects/template.root.gradle.kts b/integration-tests/gradle/projects/template.root.gradle.kts index de516cb0..51d199ff 100644 --- a/integration-tests/gradle/projects/template.root.gradle.kts +++ b/integration-tests/gradle/projects/template.root.gradle.kts @@ -1,5 +1,6 @@ allprojects { repositories { + maven("https://dl.bintray.com/kotlin/kotlin-eap/") maven("https://dl.bintray.com/kotlin/kotlin-dev/") jcenter() mavenLocal() diff --git a/integration-tests/gradle/projects/template.settings.gradle.kts b/integration-tests/gradle/projects/template.settings.gradle.kts index 253c4e1b..7fe3c510 100644 --- a/integration-tests/gradle/projects/template.settings.gradle.kts +++ b/integration-tests/gradle/projects/template.settings.gradle.kts @@ -26,6 +26,7 @@ pluginManagement { } } repositories { + maven("https://dl.bintray.com/kotlin/kotlin-eap") maven("https://dl.bintray.com/kotlin/kotlin-dev/") mavenLocal() mavenCentral() diff --git a/integration-tests/maven/projects/it-maven/pom.xml b/integration-tests/maven/projects/it-maven/pom.xml index 9be87779..c6e0ef45 100644 --- a/integration-tests/maven/projects/it-maven/pom.xml +++ b/integration-tests/maven/projects/it-maven/pom.xml @@ -146,6 +146,10 @@ <pluginRepositories> <pluginRepository> + <id>kotlin-eap</id> + <url>https://dl.bintray.com/kotlin/kotlin-eap/</url> + </pluginRepository> + <pluginRepository> <id>kotlin-dev</id> <url>https://dl.bintray.com/kotlin/kotlin-dev/</url> </pluginRepository> diff --git a/settings.gradle.kts b/settings.gradle.kts index 3e6d1d8d..a9c50387 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -32,7 +32,8 @@ pluginManagement { } repositories { - maven(url = "https://dl.bintray.com/kotlin/kotlin-dev/") + maven("https://dl.bintray.com/kotlin/kotlin-eap/") + maven("https://dl.bintray.com/kotlin/kotlin-dev/") mavenCentral() jcenter() gradlePluginPortal() |