Skip to content

Commit 0f7b3e6

Browse files
committed
Remove redundant dokkaHtml from build.gradle
The `build.gradle` contains two `dokkaHtmlPartial` configs where the first one is redundant and apparently is overridden by the second one. The second one is correct any way. * Remove the first `dokkaHtmlPartial` definition since it is misleading and redundant
1 parent 4758fa2 commit 0f7b3e6

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

build.gradle

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -517,26 +517,6 @@ project('spring-integration-core') {
517517
testImplementation 'io.micrometer:micrometer-tracing-test'
518518
}
519519

520-
dokkaHtmlPartial {
521-
outputDirectory.set(new File(buildDir, 'docs/kdoc'))
522-
dokkaSourceSets {
523-
main {
524-
sourceRoots.setFrom(file('src/main/kotlin'))
525-
classpath.from(sourceSets['main'].runtimeClasspath)
526-
externalDocumentationLink {
527-
url.set(new URL("https://docs.spring.io/spring-integration/docs/$version/api/"))
528-
packageListUrl.set(file("$buildDir/api/element-list").toURI().toURL())
529-
}
530-
externalDocumentationLink {
531-
url.set(new URL('https://projectreactor.io/docs/core/release/api/'))
532-
}
533-
externalDocumentationLink {
534-
url.set(new URL('https://www.reactive-streams.org/reactive-streams-1.0.3-javadoc/'))
535-
}
536-
}
537-
}
538-
}
539-
540520
dokkaHtmlPartial {
541521
outputDirectory.set(new File(buildDir, 'docs/kdoc'))
542522
dokkaSourceSets {

0 commit comments

Comments
 (0)