mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 18:40:15 +08:00
74925ff6e8
Separate PluginManager and its implementations; Add Setting extensions; Documentation updates
139 lines
4.3 KiB
Plaintext
139 lines
4.3 KiB
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
import java.text.SimpleDateFormat
|
|
|
|
plugins {
|
|
kotlin("jvm") version Versions.kotlinCompiler
|
|
kotlin("plugin.serialization") version Versions.kotlinCompiler
|
|
id("java")
|
|
`maven-publish`
|
|
id("com.jfrog.bintray")
|
|
}
|
|
|
|
version = Versions.console
|
|
description = "Console backend for mirai"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
tasks.withType(JavaCompile::class.java) {
|
|
options.encoding = "UTF8"
|
|
}
|
|
|
|
kotlin {
|
|
explicitApiWarning()
|
|
|
|
sourceSets.all {
|
|
target.compilations.all {
|
|
kotlinOptions {
|
|
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=enable"
|
|
jvmTarget = "1.8"
|
|
// useIR = true
|
|
}
|
|
}
|
|
languageSettings.apply {
|
|
enableLanguageFeature("InlineClasses")
|
|
progressiveMode = true
|
|
|
|
useExperimentalAnnotation("kotlin.Experimental")
|
|
useExperimentalAnnotation("kotlin.OptIn")
|
|
|
|
useExperimentalAnnotation("net.mamoe.mirai.utils.MiraiInternalAPI")
|
|
useExperimentalAnnotation("net.mamoe.mirai.utils.MiraiExperimentalAPI")
|
|
useExperimentalAnnotation("net.mamoe.mirai.console.ConsoleFrontEndImplementation")
|
|
useExperimentalAnnotation("net.mamoe.mirai.console.utils.ConsoleExperimentalAPI")
|
|
useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
|
useExperimentalAnnotation("kotlin.experimental.ExperimentalTypeInference")
|
|
useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
|
|
}
|
|
}
|
|
|
|
sourceSets.invoke {
|
|
getByName("test") {
|
|
languageSettings.apply {
|
|
languageVersion = "1.4"
|
|
}
|
|
}
|
|
getByName("main") {
|
|
languageSettings.apply {
|
|
languageVersion = "1.3"
|
|
apiVersion = "1.3"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileAndRuntime("net.mamoe:mirai-core:${Versions.core}")
|
|
compileAndRuntime(kotlin("stdlib-jdk8", Versions.kotlinStdlib))
|
|
|
|
api("net.mamoe.yamlkt:yamlkt:0.3.1")
|
|
api("org.jetbrains:annotations:19.0.0")
|
|
api(kotlinx("coroutines-jdk8", Versions.coroutines))
|
|
|
|
api("com.vdurmont:semver4j:3.1.0")
|
|
|
|
//api(kotlinx("collections-immutable", Versions.collectionsImmutable))
|
|
|
|
testApi("net.mamoe:mirai-core-qqandroid:${Versions.core}")
|
|
testApi(kotlin("stdlib-jdk8"))
|
|
testApi(kotlin("test"))
|
|
testApi(kotlin("test-junit5"))
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.2.0")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.2.0")
|
|
}
|
|
|
|
ext.apply {
|
|
// 傻逼 compileAndRuntime 没 exclude 掉
|
|
// 傻逼 gradle 第二次配置 task 会覆盖掉第一次的配置
|
|
val x: com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar.() -> Unit = {
|
|
dependencyFilter.exclude {
|
|
when ("${it.moduleGroup}:${it.moduleName}") {
|
|
"net.mamoe:mirai-core" -> true
|
|
"net.mamoe:mirai-core-qqandroid" -> true
|
|
else -> false
|
|
}
|
|
}
|
|
}
|
|
set("shadowJar", x)
|
|
}
|
|
|
|
tasks {
|
|
"test"(Test::class) {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
val compileKotlin by getting {}
|
|
|
|
val fillBuildConstants by registering {
|
|
group = "mirai"
|
|
doLast {
|
|
(compileKotlin as KotlinCompile).source.filter { it.name == "MiraiConsole.kt" }.single().let { file ->
|
|
file.writeText(file.readText()
|
|
.replace(Regex("""val buildDate: Date = Date\((.*)\) //(.*)""")) {
|
|
"""
|
|
val buildDate: Date = Date(${System.currentTimeMillis()}L) // ${
|
|
SimpleDateFormat("yyyy-MM-dd HH:mm:ss").apply {
|
|
timeZone = TimeZone.getTimeZone("GMT+8")
|
|
}.format(Date())
|
|
}
|
|
""".trimIndent()
|
|
}
|
|
.replace(Regex("""const val version: String = "(.*)"""")) {
|
|
"""
|
|
const val version: String = "${Versions.console}"
|
|
""".trimIndent()
|
|
}
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// region PUBLISHING
|
|
|
|
setupPublishing("mirai-console")
|
|
|
|
// endregion |