diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..0128f6e --- /dev/null +++ b/build.gradle @@ -0,0 +1,30 @@ +allprojects { + group = 'me.lucko' + version = '1.0-SNAPSHOT' +} + +subprojects { + apply plugin: 'java' + apply plugin: 'maven' + + ext { + pluginVersion = '1.0.4' + } + + 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" } + } + +} |