Add ability to generate dokka docs
This commit is contained in:
parent
e139e3d999
commit
6332e78375
4
android/Module.md
Normal file
4
android/Module.md
Normal file
@ -0,0 +1,4 @@
|
||||
# Module bdk-android
|
||||
The [bitcoindevkit](https://bitcoindevkit.org/) language bindings library for Android. Current version: `0.4.0`.
|
||||
|
||||
# Package org.bitcoindevkit
|
@ -3,6 +3,7 @@ plugins {
|
||||
id("kotlin-android")
|
||||
id("maven-publish")
|
||||
id("signing")
|
||||
id("org.jetbrains.dokka") version "1.6.10"
|
||||
}
|
||||
|
||||
android {
|
||||
@ -87,3 +88,12 @@ signing {
|
||||
useGpgCmd()
|
||||
sign(publishing.publications)
|
||||
}
|
||||
|
||||
tasks.withType<org.jetbrains.dokka.gradle.DokkaTask>().configureEach {
|
||||
dokkaSourceSets {
|
||||
named("main") {
|
||||
moduleName.set("bdk-android")
|
||||
includes.from("Module.md")
|
||||
}
|
||||
}
|
||||
}
|
2088
docs-0.4.0.patch
Normal file
2088
docs-0.4.0.patch
Normal file
File diff suppressed because it is too large
Load Diff
4
jvm/Module.md
Normal file
4
jvm/Module.md
Normal file
@ -0,0 +1,4 @@
|
||||
# Module bdk-jvm
|
||||
The [bitcoindevkit](https://bitcoindevkit.org/) language bindings library for the JVM. Current version: `0.4.0`.
|
||||
|
||||
# Package org.bitcoindevkit
|
@ -6,6 +6,7 @@ plugins {
|
||||
id("java-library")
|
||||
id("maven-publish")
|
||||
id("signing")
|
||||
id("org.jetbrains.dokka") version "1.6.10"
|
||||
}
|
||||
|
||||
java {
|
||||
@ -90,3 +91,12 @@ signing {
|
||||
useGpgCmd()
|
||||
sign(publishing.publications)
|
||||
}
|
||||
|
||||
tasks.withType<org.jetbrains.dokka.gradle.DokkaTask>().configureEach {
|
||||
dokkaSourceSets {
|
||||
named("main") {
|
||||
moduleName.set("bdk-jvm")
|
||||
includes.from("Module.md")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user