mirror of
https://github.com/mamoe/mirai.git
synced 2024-12-29 10:00:13 +08:00
179 lines
5.9 KiB
Plaintext
179 lines
5.9 KiB
Plaintext
/*
|
|
* 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
|
|
*/
|
|
|
|
@file:Suppress("UNUSED_VARIABLE")
|
|
|
|
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
|
|
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
|
|
|
|
plugins {
|
|
kotlin("multiplatform")
|
|
// id("kotlinx-atomicfu")
|
|
kotlin("plugin.serialization")
|
|
id("net.mamoe.kotlin-jvm-blocking-bridge")
|
|
`maven-publish`
|
|
id("com.jfrog.bintray")
|
|
java
|
|
}
|
|
|
|
description = "Mirai Protocol implementation for QQ Android"
|
|
|
|
val isAndroidSDKAvailable: Boolean by project
|
|
|
|
afterEvaluate {
|
|
tasks.getByName("compileKotlinCommon").enabled = false
|
|
tasks.getByName("compileTestKotlinCommon").enabled = false
|
|
|
|
tasks.getByName("compileCommonMainKotlinMetadata").enabled = false
|
|
tasks.getByName("compileKotlinMetadata").enabled = false
|
|
}
|
|
|
|
kotlin {
|
|
if (isAndroidSDKAvailable) {
|
|
apply(from = rootProject.file("gradle/android.gradle"))
|
|
android("android") {
|
|
publishAllLibraryVariants()
|
|
}
|
|
} else {
|
|
println(
|
|
"""Android SDK 可能未安装.
|
|
$name 的 Android 目标编译将不会进行.
|
|
这不会影响 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.
|
|
""".trimIndent()
|
|
)
|
|
}
|
|
|
|
jvm("common") {
|
|
attributes.attribute(KotlinPlatformType.attribute, KotlinPlatformType.common)
|
|
}
|
|
|
|
jvm("jvm")
|
|
|
|
/*
|
|
jvm("android") {
|
|
attributes.attribute(ATTRIBUTE_MIRAI_TARGET_PLATFORM, "android")
|
|
}*/
|
|
|
|
sourceSets.apply {
|
|
all {
|
|
dependencies {
|
|
api(project(":mirai-core-api"))
|
|
}
|
|
}
|
|
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":mirai-core-utils"))
|
|
api1(`kotlinx-serialization-core`)
|
|
api1(`kotlinx-serialization-json`)
|
|
implementation1(`kotlinx-serialization-protobuf`)
|
|
|
|
api1(`kotlinx-atomicfu`)
|
|
api1(`kotlinx-coroutines-core`)
|
|
|
|
api1(`kotlinx-io`)
|
|
implementation1(`kotlinx-coroutines-io`)
|
|
}
|
|
}
|
|
|
|
commonTest {
|
|
dependencies {
|
|
implementation(kotlin("script-runtime"))
|
|
}
|
|
}
|
|
|
|
if (isAndroidSDKAvailable) {
|
|
androidMain {
|
|
dependencies {
|
|
}
|
|
}
|
|
|
|
androidTest {
|
|
dependencies {
|
|
implementation(kotlin("test", Versions.kotlinCompiler))
|
|
implementation(kotlin("test-junit", Versions.kotlinCompiler))
|
|
implementation(kotlin("test-annotations-common"))
|
|
implementation(kotlin("test-common"))
|
|
}
|
|
}
|
|
}
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
implementation("org.bouncycastle:bcprov-jdk15on:1.64")
|
|
api1(`kotlinx-io-jvm`)
|
|
// api(kotlinx("coroutines-debug", Versions.coroutines))
|
|
}
|
|
}
|
|
|
|
jvmTest {
|
|
dependencies {
|
|
implementation("org.pcap4j:pcap4j-distribution:1.8.2")
|
|
implementation("net.mamoe:mirai-login-solver-selenium:1.0-dev-9")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
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")
|
|
|
|
|
|
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")
|
|
}
|
|
|
|
apply(from = rootProject.file("gradle/publish.gradle"))
|
|
|
|
|
|
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()) {
|
|
publication.artifact(object :
|
|
org.gradle.api.publish.maven.internal.artifact.FileBasedMavenArtifact(moduleFile) {
|
|
override fun getDefaultExtension() = "module"
|
|
})
|
|
}
|
|
}
|
|
}
|
|
} |