2020-05-10 19:09:07 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
2020-08-18 06:50:11 +00:00
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2020-05-10 19:09:07 +00:00
|
|
|
id "org.jetbrains.dokka" version "$dokka_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvm()
|
2020-08-19 06:14:28 +00:00
|
|
|
js()
|
2020-05-10 19:09:07 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
|
|
|
|
|
|
|
project.parent.subprojects.forEach {
|
|
|
|
if (it != project) {
|
|
|
|
api it
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-11 07:56:09 +00:00
|
|
|
private Closure includeSourcesInDokka(String... approximateNames) {
|
2020-05-10 19:09:07 +00:00
|
|
|
return {
|
|
|
|
parent.subprojects.forEach {
|
|
|
|
if (it != project) {
|
|
|
|
File srcDir = new File(it.projectDir.absolutePath, "src")
|
|
|
|
if (srcDir.exists() && srcDir.isDirectory()) {
|
2020-05-11 07:56:09 +00:00
|
|
|
srcDir.eachFile { file ->
|
|
|
|
if (approximateNames.any { file.name.contains(it) } && file.isDirectory()) {
|
|
|
|
String pathToSrc = file.absolutePath
|
2020-05-10 19:09:07 +00:00
|
|
|
sourceRoot {
|
|
|
|
path = pathToSrc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dokka {
|
|
|
|
outputFormat = 'html'
|
2020-06-03 09:39:54 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2020-05-10 19:09:07 +00:00
|
|
|
|
|
|
|
multiplatform {
|
|
|
|
global {
|
|
|
|
skipDeprecated = true
|
|
|
|
|
|
|
|
sourceLink {
|
|
|
|
path = "./"
|
|
|
|
url = "https://github.com/InsanusMokrassar/TelegramBotAPI/blob/master/"
|
|
|
|
lineSuffix = "#L"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
common(includeSourcesInDokka("commonMain"))
|
2020-05-11 07:56:09 +00:00
|
|
|
js(includeSourcesInDokka("jsMain"/*, "commonMain"*/))
|
|
|
|
jvm(includeSourcesInDokka("jvmMain"/*, "commonMain"*/))
|
2020-05-10 19:09:07 +00:00
|
|
|
}
|
|
|
|
}
|