mirai/frontend/mirai-console-pure/build.gradle.kts

75 lines
2.7 KiB
Plaintext
Raw Normal View History

plugins {
2020-08-16 23:21:11 +08:00
kotlin("jvm")
kotlin("plugin.serialization")
id("java")
`maven-publish`
2020-06-28 11:45:21 +08:00
id("com.jfrog.bintray")
}
kotlin {
2020-08-16 23:21:11 +08:00
target.compilations.all {
kotlinOptions {
jvmTarget = "1.8"
2020-09-04 20:49:02 +08:00
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
2020-08-16 23:21:11 +08:00
}
}
sourceSets {
all {
languageSettings.enableLanguageFeature("InlineClasses")
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
2020-06-21 00:47:52 +08:00
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
languageSettings.progressiveMode = true
languageSettings.useExperimentalAnnotation("net.mamoe.mirai.utils.MiraiInternalAPI")
languageSettings.useExperimentalAnnotation("net.mamoe.mirai.utils.MiraiExperimentalAPI")
2020-08-16 23:21:11 +08:00
languageSettings.useExperimentalAnnotation("net.mamoe.mirai.console.util.ConsoleExperimentalAPI")
languageSettings.useExperimentalAnnotation("net.mamoe.mirai.console.ConsoleFrontEndImplementation")
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
languageSettings.useExperimentalAnnotation("kotlin.experimental.ExperimentalTypeInference")
languageSettings.useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
}
}
}
2020-06-20 20:46:20 +08:00
dependencies {
2020-06-22 12:49:02 +08:00
implementation("org.jline:jline:3.15.0")
implementation("org.fusesource.jansi:jansi:1.18")
2020-06-20 20:46:20 +08:00
2020-06-22 12:49:02 +08:00
compileAndRuntime(project(":mirai-console"))
compileAndRuntime("net.mamoe:mirai-core:${Versions.core}")
compileAndRuntime(kotlin("stdlib", Versions.kotlinStdlib)) // embedded by core
runtimeOnly("net.mamoe:mirai-core-qqandroid:${Versions.core}")
2020-06-20 22:55:07 +08:00
testApi("net.mamoe:mirai-core-qqandroid:${Versions.core}")
testApi(project(":mirai-console"))
2020-09-08 15:51:45 +08:00
// val autoService = "1.0-rc7"
// kapt("com.google.auto.service", "auto-service", autoService)
// compileOnly("com.google.auto.service", "auto-service-annotations", autoService)
// testCompileOnly("com.google.auto.service", "auto-service-annotations", autoService)
}
2020-07-11 20:04:18 +08:00
ext.apply {
// 傻逼 compileAndRuntime 没 exclude 掉
// 傻逼 gradle 第二次配置 task 会覆盖掉第一次的配置
val x: com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar.() -> Unit = {
dependencyFilter.include {
when ("${it.moduleGroup}:${it.moduleName}") {
"org.jline:jline" -> true
"org.fusesource.jansi:jansi" -> true
else -> false
}
}
}
this.set("shadowJar", x)
}
2020-06-21 00:44:02 +08:00
version = Versions.consolePure
2020-06-28 11:45:21 +08:00
description = "Console Pure CLI frontend for mirai"
setupPublishing("mirai-console-pure", bintrayPkgName = "mirai-console-pure")
// endregion