diff options
author | Philip Wedemann <22521688+hfhbd@users.noreply.github.com> | 2021-04-26 22:41:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 22:41:54 +0200 |
commit | 7e3fa85d30284998744bd8847d13c8382e173d72 (patch) | |
tree | 6738de48754372fb6598acd22bedd1612232a0e0 /README.md | |
parent | 110601a17585a20cad0a7b486728f467ada3a72e (diff) | |
download | dokka-7e3fa85d30284998744bd8847d13c8382e173d72.tar.gz dokka-7e3fa85d30284998744bd8847d13c8382e173d72.tar.bz2 dokka-7e3fa85d30284998744bd8847d13c8382e173d72.zip |
Remove HTML Space Repo after release on MavenCentral (#1892)
* Remove HTML Space Repo after release on MavenCentral
* Remove HTML Space Repo from docs
* Remove Space HTML Repo from docs
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 26 |
1 files changed, 2 insertions, 24 deletions
@@ -13,8 +13,7 @@ and can generate documentation in multiple formats including standard Javadoc, H _Note: If you are upgrading from 0.10.x to a current release of Dokka, please have a look at our [migration guide](runners/gradle-plugin/MIGRATION.md)_ -The preferred way is to use `plugins` block. One dependency (`kotlinx.html`) is not yet published to MavenCentral, -so in order to properly resolve it, you have to add JetBrains's Space repository to your project's repositories: +The preferred way is to use `plugins` block. build.gradle.kts: ```kotlin @@ -24,11 +23,6 @@ plugins { repositories { mavenCentral() - maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") { - content { - includeGroup("org.jetbrains.kotlinx") - } - } } ``` @@ -78,11 +72,6 @@ buildscript { } repositories { mavenCentral() - maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") { - content { - includeGroup("org.jetbrains.kotlinx") - } - } } apply(plugin= "com.android.library") apply(plugin= "kotlin-android") @@ -113,18 +102,7 @@ with links to all generated (sub)documentations ### Using the Maven plugin -The Maven plugin does not support multi-platform projects. One dependency (`kotlinx.html`) is not yet published to MavenCentral, -so in order to properly resolve it, you have to add JetBrains's Space repository to your project's `pluginRepositories`: - -```xml -<pluginRepositories> - <pluginRepository> - <id>kotlinx-html</id> - <name>KotlinxHtmlSpace</name> - <url>https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven/</url> - </pluginRepository> -</pluginRepositories> -``` +The Maven plugin does not support multi-platform projects. Documentation is by default generated in `target/dokka`. |