mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-11 02:50:15 +08:00
26 lines
494 B
Plaintext
26 lines
494 B
Plaintext
@file:Suppress("UnstableApiUsage")
|
|
plugins {
|
|
id("com.jfrog.bintray") version Versions.bintray apply false
|
|
}
|
|
tasks.withType(JavaCompile::class.java) {
|
|
options.encoding = "UTF8"
|
|
}
|
|
|
|
allprojects {
|
|
group = "net.mamoe"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
afterEvaluate {
|
|
apply<MiraiConsoleBuildPlugin>()
|
|
|
|
setJavaCompileTarget()
|
|
}
|
|
} |