build.gradle.kts 418 B

123456789101112131415161718192021222324
  1. @file:Suppress("UnstableApiUsage")
  2. tasks.withType(JavaCompile::class.java) {
  3. options.encoding = "UTF8"
  4. }
  5. allprojects {
  6. group = "net.mamoe"
  7. repositories {
  8. mavenLocal()
  9. maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
  10. jcenter()
  11. mavenCentral()
  12. }
  13. }
  14. subprojects {
  15. afterEvaluate {
  16. apply<MiraiConsoleBuildPlugin>()
  17. setJavaCompileTarget()
  18. }
  19. }