| 123456789101112131415161718192021222324 |
- @file:Suppress("UnstableApiUsage")
- 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()
- }
- }
|