aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2020-08-03 15:23:12 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-08-03 15:44:50 +0200
commit21d0425ad0ae1d6d9721c0b217fe86c52253c9cc (patch)
treeb02c60eddb6eb55dc41f8b0dd1e455f43995b35c /README.md
parente9c9d8205e83269a38f64226e043e08a5877d8cd (diff)
downloaddokka-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.md11
1 files changed, 1 insertions, 10 deletions
diff --git a/README.md b/README.md
index b06a6912..314399c4 100644
--- a/README.md
+++ b/README.md
@@ -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>
```