bijgewerkt naar RC
This commit is contained in:
parent
f31815a512
commit
b614738d77
20
build.gradle
20
build.gradle
|
@ -3,28 +3,30 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'me.map'
|
group 'me.map'
|
||||||
version '1.0-SNAPSHOT'
|
version '1.1-SNAPSHOT'
|
||||||
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
||||||
maven {
|
maven {
|
||||||
name = 'spigotmc-repo'
|
name = 'spigotmc-repo'
|
||||||
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
||||||
}
|
}
|
||||||
|
|
||||||
maven {
|
maven {
|
||||||
name = 'recorehosting'
|
url = "https://oss.sonatype.org/content/repositories/snapshots/"
|
||||||
url = 'https://git.recorehosting.com/maven/snapshots/'
|
|
||||||
}
|
}
|
||||||
|
maven { url = 'https://repo.recorehosting.com/repository/development/' }
|
||||||
|
|
||||||
|
maven { url = 'https://git.recorehosting.com/maven/snapshots/' }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'org.projectlombok:lombok:1.18.28'
|
compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT'
|
||||||
compileOnly "org.spigotmc:spigot:1.8-R0.1-SNAPSHOT"
|
compileOnly 'me.map:ultimatekingdom:2.12.3.1-RC'
|
||||||
compileOnly 'me.map:ultimatekingdom:2.4.0.0-BETA'
|
|
||||||
}
|
|
||||||
|
|
||||||
|
compileOnly 'org.projectlombok:lombok:1.18.30'
|
||||||
|
annotationProcessor 'org.projectlombok:lombok:1.18.30'
|
||||||
|
}
|
||||||
|
|
||||||
processResources {
|
processResources {
|
||||||
def props = [version: version]
|
def props = [version: version]
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package me.map.example;
|
package me.map.example;
|
||||||
|
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
package me.map.example.command;
|
package me.map.example.command;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import me.map.ultimatekingdom.API.UltimateKingdom;
|
import me.map.ultimatekingdom.API.UltimateKingdom;
|
||||||
import me.map.ultimatekingdom.API.cmd.AbstractCommand;
|
import me.map.ultimatekingdom.API.cmd.AbstractCommand;
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ import me.map.ultimatekingdom.gameplay.events.actions.KingdomBuildEvent;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.EventPriority;
|
import org.bukkit.event.EventPriority;
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.go.libs.U;
|
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user