File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies {
13
13
implementation(" com.github.vlsi.gradle-extensions:com.github.vlsi.gradle-extensions.gradle.plugin:1.90" )
14
14
implementation(" de.thetaphi.forbiddenapis:de.thetaphi.forbiddenapis.gradle.plugin:3.9" )
15
15
implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin" )
16
- implementation(" org.jetbrains.dokka:org.jetbrains.dokka.gradle.plugin:2.0.0" )
16
+ implementation(" org.jetbrains.dokka-javadoc :org.jetbrains.dokka-javadoc .gradle.plugin:2.0.0" )
17
17
implementation(" com.github.autostyle:com.github.autostyle.gradle.plugin:4.0" )
18
18
implementation(" net.ltgt.errorprone:net.ltgt.errorprone.gradle.plugin:4.2.0" )
19
19
}
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id(" java-base" )
3
- id(" org.jetbrains.dokka" )
3
+ id(" org.jetbrains.dokka-javadoc " )
4
4
id(" build-logic.build-params" )
5
5
}
6
6
14
14
val dokkaJar by tasks.registering(Jar ::class ) {
15
15
group = LifecycleBasePlugin .BUILD_GROUP
16
16
description = " Assembles a jar archive containing javadoc"
17
- from(tasks.dokkaJavadoc )
17
+ from(tasks.dokkaGeneratePublicationJavadoc )
18
18
archiveClassifier.set(" javadoc" )
19
19
}
20
20
Original file line number Diff line number Diff line change @@ -5,3 +5,7 @@ group=dev.sigstore
5
5
6
6
# use the ./scripts/update_version.sh script to update all versions
7
7
version =1.4.0
8
+
9
+ # Kotlin Dokka is experemental, and we want silence the build warning
10
+ org.jetbrains.dokka.experimental.gradle.pluginMode =V2Enabled
11
+ org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn =true
You can’t perform that action at this time.
0 commit comments