2019-12-23 19:31:13 +08:00
|
|
|
@file:Suppress("UNUSED_VARIABLE")
|
2020-01-05 17:18:02 +08:00
|
|
|
import java.util.Properties
|
2019-12-23 19:31:13 +08:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
id("kotlinx-atomicfu")
|
|
|
|
id("com.android.library")
|
|
|
|
id("kotlinx-serialization")
|
|
|
|
`maven-publish`
|
|
|
|
id("com.jfrog.bintray") version "1.8.4-jetbrains-3" // DO NOT CHANGE THIS VERSION UNLESS YOU WANT TO WASTE YOUR TIME
|
|
|
|
}
|
|
|
|
|
|
|
|
apply(from = rootProject.file("gradle/publish.gradle"))
|
|
|
|
|
|
|
|
val kotlinVersion: String by rootProject.ext
|
|
|
|
val atomicFuVersion: String by rootProject.ext
|
|
|
|
val coroutinesVersion: String by rootProject.ext
|
|
|
|
val kotlinXIoVersion: String by rootProject.ext
|
|
|
|
val coroutinesIoVersion: String by rootProject.ext
|
|
|
|
|
|
|
|
val klockVersion: String by rootProject.ext
|
|
|
|
val ktorVersion: String by rootProject.ext
|
|
|
|
|
|
|
|
val serializationVersion: String by rootProject.ext
|
|
|
|
|
|
|
|
fun kotlinx(id: String, version: String) = "org.jetbrains.kotlinx:kotlinx-$id:$version"
|
|
|
|
|
|
|
|
fun ktor(id: String, version: String) = "io.ktor:ktor-$id:$version"
|
|
|
|
|
|
|
|
|
|
|
|
description = "QQ protocol library"
|
|
|
|
version = rootProject.ext.get("mirai_version")!!.toString()
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
|
2020-01-05 17:18:02 +08:00
|
|
|
val keyProps = Properties()
|
|
|
|
val keyFile = file("../local.properties")
|
|
|
|
if (keyFile.exists()) keyProps.load(keyFile.inputStream())
|
|
|
|
if (keyProps.getProperty("sdk.dir", "").isNotEmpty()) {
|
|
|
|
android("android") {
|
|
|
|
publishAllLibraryVariants()
|
|
|
|
project.android {
|
|
|
|
compileSdkVersion(29)
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion(15)
|
|
|
|
}
|
|
|
|
|
|
|
|
// sourceSets.filterIsInstance(com.android.build.gradle.api.AndroidSourceSet::class.java).forEach {
|
|
|
|
// it.manifest.srcFile("src/androidMain/res/AndroidManifest.xml")
|
|
|
|
// it.res.srcDirs(file("src/androidMain/res"))
|
|
|
|
// }
|
|
|
|
//(sourceSets["main"] as AndroidSourceSet).java.srcDirs(file("src/androidMain/kotlin"))
|
2019-12-23 19:31:13 +08:00
|
|
|
}
|
|
|
|
}
|
2020-01-05 17:18:02 +08:00
|
|
|
} else {
|
|
|
|
println(
|
|
|
|
"""Android SDK 可能未安装.
|
|
|
|
$name 的 Android 目标编译将不会进行.
|
|
|
|
这不会影响 Android 以外的平台的编译, 因此 JVM 等平台相关的编译和测试均能正常进行.
|
|
|
|
""".trimIndent()
|
|
|
|
)
|
2019-12-23 19:31:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
jvm("jvm") {
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
all {
|
|
|
|
languageSettings.enableLanguageFeature("InlineClasses")
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":mirai-core"))
|
|
|
|
|
|
|
|
api(kotlin("stdlib", kotlinVersion))
|
|
|
|
api(kotlin("serialization", kotlinVersion))
|
|
|
|
|
|
|
|
api("org.jetbrains.kotlinx:atomicfu:$atomicFuVersion")
|
|
|
|
api(kotlinx("io", kotlinXIoVersion))
|
|
|
|
api(kotlinx("coroutines-io", coroutinesIoVersion))
|
|
|
|
api(kotlinx("coroutines-core", coroutinesVersion))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
api(kotlin("test-annotations-common"))
|
|
|
|
api(kotlin("test-common"))
|
2019-12-30 16:31:28 +08:00
|
|
|
implementation(kotlin("script-runtime"))
|
2019-12-23 19:31:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val androidMain by getting {
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val androidTest by getting {
|
|
|
|
dependencies {
|
|
|
|
api(kotlin("test", kotlinVersion))
|
|
|
|
api(kotlin("test-junit", kotlinVersion))
|
|
|
|
api(kotlin("test-annotations-common"))
|
|
|
|
api(kotlin("test-common"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val jvmMain by getting {
|
|
|
|
dependencies {
|
2020-01-01 18:15:54 +08:00
|
|
|
runtimeOnly(files("build/classes/kotlin/jvm/main")) // classpath is not properly set by IDE
|
2019-12-23 19:31:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val jvmTest by getting {
|
|
|
|
dependencies {
|
|
|
|
api(kotlin("test", kotlinVersion))
|
|
|
|
api(kotlin("test-junit", kotlinVersion))
|
|
|
|
implementation("org.pcap4j:pcap4j-distribution:1.8.2")
|
|
|
|
|
2020-01-01 18:15:54 +08:00
|
|
|
runtimeOnly(files("build/classes/kotlin/jvm/main")) // classpath is not properly set by IDE
|
|
|
|
runtimeOnly(files("build/classes/kotlin/jvm/test")) // classpath is not properly set by IDE
|
2019-12-23 19:31:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|