bijgewerkt naar RC

This commit is contained in:
webadmin 2024-05-23 17:00:37 +02:00
parent f31815a512
commit b614738d77
No known key found for this signature in database
GPG Key ID: 273E77110F9C224B
4 changed files with 13 additions and 12 deletions

View File

@ -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]

View File

@ -1,5 +1,6 @@
package me.map.example;
import lombok.Data;
@Data

View File

@ -1,7 +1,5 @@
package me.map.example.command;
import me.map.ultimatekingdom.API.UltimateKingdom;
import me.map.ultimatekingdom.API.cmd.AbstractCommand;

View File

@ -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;