Skip to content

Commit

Permalink
Correct publishing information
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnatBeresnev committed Oct 19, 2023
1 parent 2bb8290 commit e0780bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ publishing {
publications.withType<MavenPublication>().configureEach {
pom {
name.convention("Dokka ${project.name}")
description.convention("Dokka is an API documentation engine for Kotlin and Java, performing the same function as Javadoc for Java")
description.convention("Dokka is an API documentation engine for Kotlin")
url.convention("https://github.com/Kotlin/dokka")

licenses {
Expand All @@ -78,7 +78,7 @@ publishing {

scm {
connection.convention("scm:git:git://github.com/Kotlin/dokka.git")
url.convention("https://github.com/Kotlin/dokka/tree/master")
url.convention("https://github.com/Kotlin/dokka")
}
}
}
Expand Down
12 changes: 3 additions & 9 deletions dokka-runners/gradle-plugin-classic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ gradlePlugin {
create("dokkaGradlePlugin") {
id = "org.jetbrains.dokka"
displayName = "Dokka plugin"
description = "Dokka, the Kotlin documentation tool"
description = "Dokka is an API documentation engine for Kotlin"
implementationClass = "org.jetbrains.dokka.gradle.DokkaPlugin"
version = dokkaVersion
isAutomatedPublishing = true
Expand All @@ -59,9 +59,9 @@ gradlePlugin {
}

pluginBundle {
website = "https://www.kotlinlang.org/"
website = "https://kotl.in/dokka"
vcsUrl = "https://github.com/kotlin/dokka.git"
tags = listOf("dokka", "kotlin", "kdoc", "android", "documentation")
tags = listOf("dokka", "kotlin", "kdoc", "android", "documentation", "api")

mavenCoordinates {
groupId = "org.jetbrains.dokka"
Expand All @@ -71,12 +71,6 @@ pluginBundle {

publishing {
publications {
register<MavenPublication>("dokkaGradlePluginForIntegrationTests") {
artifactId = "dokka-gradle-plugin"
from(components["java"])
version = "for-integration-tests-SNAPSHOT"
}

register<MavenPublication>("pluginMaven") {
artifactId = "dokka-gradle-plugin"
}
Expand Down

0 comments on commit e0780bf

Please sign in to comment.