From 7d6808cbcfbb0f61f93e536d36968eeda5bd302c Mon Sep 17 00:00:00 2001 From: Luck Date: Wed, 6 Jun 2018 15:39:16 +0100 Subject: Convert to Gradle --- build.gradle | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 build.gradle (limited to 'build.gradle') 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" } + } + +} -- cgit