2020-11-01 15:07:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2019-2020 Mamoe Technologies and contributors.
|
|
|
|
*
|
|
|
|
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
|
|
|
|
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
|
|
|
|
*
|
|
|
|
* https://github.com/mamoe/mirai/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
2019-11-15 10:39:00 +08:00
|
|
|
@file:Suppress("UNUSED_VARIABLE")
|
|
|
|
|
2020-10-03 13:35:05 +08:00
|
|
|
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
|
|
|
|
|
2019-10-30 23:00:29 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
2020-10-03 13:47:36 +08:00
|
|
|
// id("kotlinx-atomicfu")
|
2020-03-24 10:01:03 +08:00
|
|
|
kotlin("plugin.serialization")
|
2020-08-18 22:09:05 +08:00
|
|
|
id("net.mamoe.kotlin-jvm-blocking-bridge")
|
2019-11-15 10:39:00 +08:00
|
|
|
`maven-publish`
|
2020-09-22 18:56:27 +08:00
|
|
|
id("com.jfrog.bintray")
|
2020-10-03 12:42:13 +08:00
|
|
|
java
|
2019-10-30 23:00:29 +08:00
|
|
|
}
|
|
|
|
|
2020-10-03 12:42:13 +08:00
|
|
|
description = "Mirai Protocol implementation for QQ Android"
|
2019-10-30 23:00:29 +08:00
|
|
|
|
2020-01-05 18:16:11 +08:00
|
|
|
val isAndroidSDKAvailable: Boolean by project
|
|
|
|
|
2020-11-22 14:25:49 +08:00
|
|
|
afterEvaluate {
|
|
|
|
tasks.getByName("compileKotlinCommon").enabled = false
|
|
|
|
tasks.getByName("compileTestKotlinCommon").enabled = false
|
2020-11-22 14:45:03 +08:00
|
|
|
|
|
|
|
tasks.getByName("compileCommonMainKotlinMetadata").enabled = false
|
|
|
|
tasks.getByName("compileKotlinMetadata").enabled = false
|
2020-11-22 14:25:49 +08:00
|
|
|
}
|
|
|
|
|
2019-11-06 21:22:23 +08:00
|
|
|
kotlin {
|
2020-01-05 17:38:46 +08:00
|
|
|
if (isAndroidSDKAvailable) {
|
2020-01-21 14:49:42 +08:00
|
|
|
apply(from = rootProject.file("gradle/android.gradle"))
|
2020-01-05 17:18:02 +08:00
|
|
|
android("android") {
|
|
|
|
publishAllLibraryVariants()
|
2019-10-30 23:00:29 +08:00
|
|
|
}
|
2020-01-05 17:18:02 +08:00
|
|
|
} else {
|
|
|
|
println(
|
|
|
|
"""Android SDK 可能未安装.
|
|
|
|
$name 的 Android 目标编译将不会进行.
|
2020-01-05 17:38:46 +08:00
|
|
|
这不会影响 Android 以外的平台的编译.
|
|
|
|
""".trimIndent()
|
|
|
|
)
|
|
|
|
println(
|
|
|
|
"""Android SDK might not be installed.
|
|
|
|
Android target of $name will not be compiled.
|
|
|
|
It does no influence on the compilation of other platforms.
|
2020-01-05 17:18:02 +08:00
|
|
|
""".trimIndent()
|
|
|
|
)
|
2019-10-30 23:00:29 +08:00
|
|
|
}
|
|
|
|
|
2020-11-22 14:25:49 +08:00
|
|
|
jvm("common") {
|
|
|
|
attributes.attribute(ATTRIBUTE_MIRAI_TARGET_PLATFORM, "common")
|
|
|
|
}
|
|
|
|
|
2020-10-03 12:42:13 +08:00
|
|
|
jvm("jvm") {
|
2020-11-22 14:25:49 +08:00
|
|
|
attributes.attribute(ATTRIBUTE_MIRAI_TARGET_PLATFORM, "jvm")
|
2020-07-03 16:12:55 +08:00
|
|
|
}
|
2019-10-30 23:00:29 +08:00
|
|
|
|
2020-11-22 14:25:49 +08:00
|
|
|
/*
|
|
|
|
jvm("android") {
|
|
|
|
attributes.attribute(ATTRIBUTE_MIRAI_TARGET_PLATFORM, "android")
|
|
|
|
}*/
|
|
|
|
|
2020-07-20 15:06:30 +08:00
|
|
|
sourceSets.apply {
|
2019-11-23 22:34:57 +08:00
|
|
|
all {
|
2020-10-03 12:42:13 +08:00
|
|
|
dependencies {
|
|
|
|
api(project(":mirai-core-api"))
|
|
|
|
}
|
2020-03-07 22:23:10 +08:00
|
|
|
}
|
2019-11-08 20:51:40 +08:00
|
|
|
|
2020-10-03 13:35:05 +08:00
|
|
|
commonMain {
|
2019-11-23 22:34:57 +08:00
|
|
|
dependencies {
|
2020-10-03 13:35:05 +08:00
|
|
|
api1(`kotlinx-serialization-core`)
|
2020-11-22 14:25:49 +08:00
|
|
|
api1(`kotlinx-serialization-json`)
|
2020-10-03 13:35:05 +08:00
|
|
|
implementation1(`kotlinx-serialization-protobuf`)
|
|
|
|
|
|
|
|
api1(`kotlinx-atomicfu`)
|
|
|
|
api1(`kotlinx-coroutines-core`)
|
|
|
|
|
|
|
|
api1(`kotlinx-io`)
|
|
|
|
implementation1(`kotlinx-coroutines-io`)
|
2019-11-23 22:34:57 +08:00
|
|
|
}
|
2019-11-22 19:10:10 +08:00
|
|
|
}
|
2020-07-20 17:21:00 +08:00
|
|
|
|
2020-10-03 13:35:05 +08:00
|
|
|
commonTest {
|
2019-11-23 22:34:57 +08:00
|
|
|
dependencies {
|
2020-10-03 12:42:13 +08:00
|
|
|
implementation(kotlin("script-runtime"))
|
2019-11-23 22:34:57 +08:00
|
|
|
}
|
2019-11-13 19:49:21 +08:00
|
|
|
}
|
2019-10-31 23:11:55 +08:00
|
|
|
|
2020-01-05 18:16:11 +08:00
|
|
|
if (isAndroidSDKAvailable) {
|
2020-10-03 13:35:05 +08:00
|
|
|
androidMain {
|
2020-01-05 18:16:11 +08:00
|
|
|
dependencies {
|
|
|
|
}
|
2019-11-23 22:34:57 +08:00
|
|
|
}
|
|
|
|
|
2020-10-03 13:35:05 +08:00
|
|
|
androidTest {
|
2020-01-05 18:16:11 +08:00
|
|
|
dependencies {
|
2020-10-03 13:35:05 +08:00
|
|
|
implementation(kotlin("test", Versions.kotlinCompiler))
|
|
|
|
implementation(kotlin("test-junit", Versions.kotlinCompiler))
|
2020-02-12 13:52:07 +08:00
|
|
|
implementation(kotlin("test-annotations-common"))
|
|
|
|
implementation(kotlin("test-common"))
|
2020-01-05 18:16:11 +08:00
|
|
|
}
|
2019-12-07 00:17:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-03 13:35:05 +08:00
|
|
|
jvmMain {
|
2019-11-15 10:39:00 +08:00
|
|
|
dependencies {
|
2020-10-03 12:42:13 +08:00
|
|
|
implementation("org.bouncycastle:bcprov-jdk15on:1.64")
|
2020-10-03 13:35:05 +08:00
|
|
|
api1(`kotlinx-io-jvm`)
|
|
|
|
// api(kotlinx("coroutines-debug", Versions.coroutines))
|
2019-11-15 10:39:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-03 13:35:05 +08:00
|
|
|
jvmTest {
|
2019-11-23 22:34:57 +08:00
|
|
|
dependencies {
|
2019-12-06 23:50:54 +08:00
|
|
|
implementation("org.pcap4j:pcap4j-distribution:1.8.2")
|
2019-11-15 10:39:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-16 13:54:42 +08:00
|
|
|
}
|
2020-03-24 10:01:03 +08:00
|
|
|
|
2020-10-03 13:35:05 +08:00
|
|
|
val NamedDomainObjectContainer<KotlinSourceSet>.androidMain: NamedDomainObjectProvider<KotlinSourceSet>
|
|
|
|
get() = named<KotlinSourceSet>("androidMain")
|
|
|
|
|
|
|
|
val NamedDomainObjectContainer<KotlinSourceSet>.androidTest: NamedDomainObjectProvider<KotlinSourceSet>
|
|
|
|
get() = named<KotlinSourceSet>("androidTest")
|
|
|
|
|
|
|
|
|
|
|
|
val NamedDomainObjectContainer<KotlinSourceSet>.jvmMain: NamedDomainObjectProvider<KotlinSourceSet>
|
|
|
|
get() = named<KotlinSourceSet>("jvmMain")
|
|
|
|
|
|
|
|
val NamedDomainObjectContainer<KotlinSourceSet>.jvmTest: NamedDomainObjectProvider<KotlinSourceSet>
|
|
|
|
get() = named<KotlinSourceSet>("jvmTest")
|
|
|
|
|
|
|
|
|
2020-08-22 12:56:41 +08:00
|
|
|
fun org.jetbrains.kotlin.gradle.plugin.KotlinDependencyHandler.implementation1(dependencyNotation: String) =
|
|
|
|
implementation(dependencyNotation) {
|
|
|
|
exclude("org.jetbrains.kotlin", "kotlin-stdlib")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core-common")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core-jvm")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core-metadata")
|
|
|
|
}
|
|
|
|
|
|
|
|
fun org.jetbrains.kotlin.gradle.plugin.KotlinDependencyHandler.api1(dependencyNotation: String) =
|
|
|
|
api(dependencyNotation) {
|
|
|
|
exclude("org.jetbrains.kotlin", "kotlin-stdlib")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core-common")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core-jvm")
|
|
|
|
exclude("org.jetbrains.kotlinx", "kotlinx-coroutines-core-metadata")
|
|
|
|
}
|
|
|
|
|
2020-08-18 09:24:44 +08:00
|
|
|
apply(from = rootProject.file("gradle/publish.gradle"))
|
|
|
|
|
2020-10-03 12:42:13 +08:00
|
|
|
|
2020-08-18 09:24:44 +08:00
|
|
|
tasks.withType<com.jfrog.bintray.gradle.tasks.BintrayUploadTask> {
|
|
|
|
doFirst {
|
|
|
|
publishing.publications
|
|
|
|
.filterIsInstance<MavenPublication>()
|
|
|
|
.forEach { publication ->
|
|
|
|
val moduleFile = buildDir.resolve("publications/${publication.name}/module.json")
|
|
|
|
if (moduleFile.exists()) {
|
2020-08-19 20:36:31 +08:00
|
|
|
publication.artifact(object :
|
|
|
|
org.gradle.api.publish.maven.internal.artifact.FileBasedMavenArtifact(moduleFile) {
|
2020-08-18 09:24:44 +08:00
|
|
|
override fun getDefaultExtension() = "module"
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|