diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2020-08-03 15:23:12 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-03 15:44:50 +0200 |
commit | 21d0425ad0ae1d6d9721c0b217fe86c52253c9cc (patch) | |
tree | b02c60eddb6eb55dc41f8b0dd1e455f43995b35c /README.md | |
parent | e9c9d8205e83269a38f64226e043e08a5877d8cd (diff) | |
download | dokka-21d0425ad0ae1d6d9721c0b217fe86c52253c9cc.tar.gz dokka-21d0425ad0ae1d6d9721c0b217fe86c52253c9cc.tar.bz2 dokka-21d0425ad0ae1d6d9721c0b217fe86c52253c9cc.zip |
Remove mentions of kotlin-eap repo
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -65,7 +65,6 @@ plugins { repositories { jcenter() // or maven(url="https://dl.bintray.com/kotlin/dokka") - maven("https://dl.bintray.com/kotlin/kotlin-eap") } ``` @@ -74,7 +73,7 @@ settings.gradle.kts: pluginManagement { repositories { gradlePluginPortal() - maven("https://dl.bintray.com/kotlin/kotlin-eap") + jcenter() } } ``` @@ -87,7 +86,6 @@ eg. you'll have to use `named<DokkaTask>("dokkaHtml")` instead of `dokkaHtml`: buildscript { repositories { jcenter() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } dependencies { classpath("org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}") @@ -95,7 +93,6 @@ buildscript { } repositories { jcenter() // or maven(url="https://dl.bintray.com/kotlin/dokka") - maven("https://dl.bintray.com/kotlin/kotlin-eap") } apply(plugin="org.jetbrains.dokka") @@ -381,7 +378,6 @@ Make sure you apply dokka after `com.android.library` and `kotlin-android`. buildscript { repositories { jcenter() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } dependencies { classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}") @@ -390,7 +386,6 @@ buildscript { } repositories { jcenter() - maven("https://dl.bintray.com/kotlin/kotlin-eap") } apply(plugin= "com.android.library") apply(plugin= "kotlin-android") @@ -433,10 +428,6 @@ The Maven plugin is available in JCenter. You need to add the JCenter repository <name>JCenter</name> <url>https://jcenter.bintray.com/</url> </pluginRepository> - <pluginRepository> - <id>kotlin-eap</id> - <url>https://dl.bintray.com/kotlin/kotlin-eap/</url> - </pluginRepository> </pluginRepositories> ``` |