From 3a33bdf0921fbb194bcfd9e4c30310a9d3573c9e Mon Sep 17 00:00:00 2001 From: NightDev701 Date: Thu, 11 Jan 2024 09:35:17 +0100 Subject: [PATCH] honey core 2.0 development --- build.gradle | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 8ce1937..72b4d31 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,10 @@ compileJava { options.encoding = 'UTF-8' } -group 'org.scorpion' +String commit = 'git rev-parse --verify --short HEAD'.execute().text.trim() + +group 'org.sunlightdev' +version "2.0-SNAPSHOT-" + commit repositories { mavenCentral() @@ -16,9 +19,8 @@ repositories { } dependencies { - compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - implementation 'org.jetbrains:annotations:23.0.0' - implementation files('API/json.jar') + compileOnly("org.spigotmc:spigot-api:1.20.4-R0.1-SNAPSHOT") + compileOnly 'org.jetbrains:annotations:23.0.0' } java { @@ -29,7 +31,6 @@ java { jar { duplicatesStrategy = DuplicatesStrategy.INCLUDE - from(zipTree("API/json.jar")) from { subprojects.collect { it.sourceSets.main.output } }