summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle14
1 files changed, 14 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..1a58fb4
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,14 @@
+apply plugin: 'java'
+group = 'net.cflems.mc.sandbox'
+version = '0.1.0'
+
+repositories {
+ mavenCentral()
+ maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
+}
+
+dependencies {
+ implementation 'org.spigotmc:spigot-api:1.21.6-R0.1-SNAPSHOT'
+}
+
+defaultTasks 'clean', 'build'