mirror of
https://github.com/InsanusMokrassar/krontab.git
synced 2025-11-15 19:00:14 +00:00
add dokka config
This commit is contained in:
28
dokka.gradle
Normal file
28
dokka.gradle
Normal file
@@ -0,0 +1,28 @@
|
||||
dokka {
|
||||
outputFormat = 'html'
|
||||
|
||||
switch (true) {
|
||||
case project.hasProperty("DOKKA_PATH"):
|
||||
outputDirectory = project.property("DOKKA_PATH").toString()
|
||||
break
|
||||
case System.getenv("DOKKA_PATH") != null:
|
||||
outputDirectory = System.getenv("DOKKA_PATH")
|
||||
break
|
||||
}
|
||||
|
||||
multiplatform {
|
||||
global {
|
||||
skipDeprecated = true
|
||||
|
||||
sourceLink {
|
||||
path = "./"
|
||||
url = "https://github.com/InsanusMokrassar/krontab/blob/master/"
|
||||
lineSuffix = "#L"
|
||||
}
|
||||
}
|
||||
|
||||
common { sourceRoot { path = "src/commonMain" } }
|
||||
js { sourceRoot { path = "src/jsMain" } }
|
||||
jvm { sourceRoot { path = "src/jvmMain" } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user