allprojects { group = 'me.lucko' version = '1.1-SNAPSHOT' } subprojects { apply plugin: 'java' apply plugin: 'maven' ext { pluginVersion = '1.1.0' } sourceCompatibility = 1.8 targetCompatibility = 1.8 tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } repositories { mavenLocal() mavenCentral() maven { url "https://repo.lucko.me/" } maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" } maven { url "https://repo.spongepowered.org/maven" } maven { url "https://repo.velocitypowered.com/snapshots/" } } }