From b614738d7753cd13d50126be40c8d813e621dc04 Mon Sep 17 00:00:00 2001 From: webadmin Date: Thu, 23 May 2024 17:00:37 +0200 Subject: [PATCH] bijgewerkt naar RC --- build.gradle | 20 ++++++++++--------- src/main/java/me/map/example/Demo.java | 1 + .../me/map/example/command/TestCommand.java | 2 -- .../me/map/example/listener/Luisteraar.java | 2 +- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/build.gradle b/build.gradle index 3231bb8..f51afe1 100644 --- a/build.gradle +++ b/build.gradle @@ -3,28 +3,30 @@ plugins { } group 'me.map' -version '1.0-SNAPSHOT' - +version '1.1-SNAPSHOT' repositories { mavenCentral() + maven { name = 'spigotmc-repo' url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' } - maven { - name = 'recorehosting' - url = 'https://git.recorehosting.com/maven/snapshots/' + url = "https://oss.sonatype.org/content/repositories/snapshots/" } + maven { url = 'https://repo.recorehosting.com/repository/development/' } + + maven { url = 'https://git.recorehosting.com/maven/snapshots/' } } dependencies { - implementation 'org.projectlombok:lombok:1.18.28' - compileOnly "org.spigotmc:spigot:1.8-R0.1-SNAPSHOT" - compileOnly 'me.map:ultimatekingdom:2.4.0.0-BETA' -} + compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT' + compileOnly 'me.map:ultimatekingdom:2.12.3.1-RC' + compileOnly 'org.projectlombok:lombok:1.18.30' + annotationProcessor 'org.projectlombok:lombok:1.18.30' +} processResources { def props = [version: version] diff --git a/src/main/java/me/map/example/Demo.java b/src/main/java/me/map/example/Demo.java index 50b22a0..e519114 100644 --- a/src/main/java/me/map/example/Demo.java +++ b/src/main/java/me/map/example/Demo.java @@ -1,5 +1,6 @@ package me.map.example; + import lombok.Data; @Data diff --git a/src/main/java/me/map/example/command/TestCommand.java b/src/main/java/me/map/example/command/TestCommand.java index 8053e7c..01b5e34 100644 --- a/src/main/java/me/map/example/command/TestCommand.java +++ b/src/main/java/me/map/example/command/TestCommand.java @@ -1,7 +1,5 @@ package me.map.example.command; - - import me.map.ultimatekingdom.API.UltimateKingdom; import me.map.ultimatekingdom.API.cmd.AbstractCommand; diff --git a/src/main/java/me/map/example/listener/Luisteraar.java b/src/main/java/me/map/example/listener/Luisteraar.java index 082e26a..16c4092 100644 --- a/src/main/java/me/map/example/listener/Luisteraar.java +++ b/src/main/java/me/map/example/listener/Luisteraar.java @@ -7,7 +7,7 @@ import me.map.ultimatekingdom.gameplay.events.actions.KingdomBuildEvent; import org.bukkit.event.EventHandler; import org.bukkit.event.EventPriority; import org.bukkit.event.Listener; -import org.go.libs.U; + import java.util.Map;