diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-07-17 15:20:25 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-17 15:32:06 +0200 |
commit | 17fd70cd03182abe3374ddcf49029e03b8863c96 (patch) | |
tree | a95b6f1f9b07ff04365020eb87e53d6e67409125 | |
parent | ee12107aeb40b4a432d817a82e2a93fc96f6ba45 (diff) | |
download | dokka-17fd70cd03182abe3374ddcf49029e03b8863c96.tar.gz dokka-17fd70cd03182abe3374ddcf49029e03b8863c96.tar.bz2 dokka-17fd70cd03182abe3374ddcf49029e03b8863c96.zip |
Add kotlin-eap repository consistently to the project
-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() |