From 12f7aa2de5290e37ff417d29b7b95ba72c00d0d9 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Mon, 30 Jun 2025 20:09:33 -0400 Subject: Initial project with repair, enchant, fireball, fly, and powertool --- build.gradle | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 build.gradle (limited to 'build.gradle') 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' -- cgit v1.2.3