mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-01 08:09:39 +01:00
28 lines
814 B
Plaintext
28 lines
814 B
Plaintext
subprojects {
|
|
apply(plugin = "java-library")
|
|
// Java is not explicitly needed, but keeps IJ happy with the tasks block
|
|
apply(plugin = "java")
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven("https://repo.spongepowered.org/maven")
|
|
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots")
|
|
maven("https://repo.codemc.org/repository/maven-public")
|
|
maven("https://maven.sk89q.com/repo")
|
|
maven("https://mvnrepository.com/artifact/org.jetbrains/annotations")
|
|
}
|
|
|
|
tasks {
|
|
withType(JavaCompile::class.java) {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
}
|
|
|
|
configure<JavaPluginConvention> {
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
}
|