Skip to content

Commit

Permalink
chore(kotlin): remove dokka for now (#716)
Browse files Browse the repository at this point in the history
* remove unused plugin

* chore(kotlin): remove dokka for now
  • Loading branch information
KazuCocoa authored Jul 14, 2024
1 parent 2290551 commit a5a4410
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 44 deletions.
13 changes: 0 additions & 13 deletions finder/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ plugins {
id("kotlinx-serialization") version "1.3.40"
`maven-publish`
kotlin("jvm") version "1.3.40"
id("org.jetbrains.dokka") version "1.6.0"
}

repositories {
Expand All @@ -22,22 +21,10 @@ dependencies {
testImplementation("junit:junit:4.12")
}

tasks.dokkaHtml.configure {
outputDirectory.set(buildDir.resolve("dokka"))
}

val dokkaJar by tasks.creating(Jar::class) {
group = JavaBasePlugin.DOCUMENTATION_GROUP
description = "Assembles Kotlin docs with Dokka"
classifier = "javadoc"
from(tasks.dokkaHtml)
}

publishing {
publications {
create<MavenPublication>("default") {
from(components["java"])
artifact(dokkaJar)
}
}
repositories {
Expand Down
11 changes: 0 additions & 11 deletions finder/kotlin/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,3 @@ pluginManagement {
maven("https://kotlin.bintray.com/kotlinx")
}
}
plugins {
id("com.gradle.enterprise") version("3.7.2")
}

gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
}
}
20 changes: 0 additions & 20 deletions finder/kotlin/src/test/kotlin/resources/a.html

This file was deleted.

0 comments on commit a5a4410

Please sign in to comment.