mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-11 02:50:15 +08:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
plugins {
|
|
kotlin("jvm") version "1.4.10"
|
|
kotlin("plugin.serialization") version "1.4.10"
|
|
kotlin("kapt") version "1.4.10"
|
|
id("com.github.johnrengelman.shadow") version "5.2.0"
|
|
}
|
|
|
|
group = "org.example"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin.sourceSets.all {
|
|
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(kotlin("stdlib-jdk8"))
|
|
|
|
val core = "1.3.2"
|
|
val console = "1.0-RC-dev-33"
|
|
|
|
compileOnly("net.mamoe:mirai-console:$console")
|
|
compileOnly("net.mamoe:mirai-core:$core")
|
|
|
|
val autoService = "1.0-rc7"
|
|
kapt("com.google.auto.service", "auto-service", autoService)
|
|
compileOnly("com.google.auto.service", "auto-service-annotations", autoService)
|
|
|
|
testImplementation("net.mamoe:mirai-console:$console")
|
|
testImplementation("net.mamoe:mirai-core:$core")
|
|
testImplementation("net.mamoe:mirai-console-terminal:$console")
|
|
testImplementation(kotlin("stdlib-jdk8"))
|
|
}
|
|
|
|
kotlin.target.compilations.all {
|
|
kotlinOptions.freeCompilerArgs += "-Xjvm-default=enable"
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
} |