mirai/mirai-console/tools/intellij-plugin/resources/fileTemplates/code/Plugin build.gradle.kts.ft

21 lines
422 B
Plaintext
Raw Normal View History

plugins {
val kotlinVersion = "$KOTLIN_VERSION"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "$MIRAI_VERSION"
}
group = "$GROUP_ID"
version = "$VERSION"
repositories {
#if($USE_PROXY_REPO)maven("https://maven.aliyun.com/repository/public")#end
mavenCentral()
}
mirai {
jvmTarget = JavaVersion.VERSION_1_8
}