0

add CommandManager

This commit is contained in:
2021-01-02 01:24:09 +03:00
parent 1bb5eee5cf
commit 72c858db2d
5 changed files with 158 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ repositories {
mavenLocal()
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/groups/public' }
maven { url 'https://dmx-mc-project.gitlab.io/maven-repository/' }
}
ext {
@@ -25,7 +26,8 @@ ext {
'org.yaml:snakeyaml'
]],
commons_text: 'org.apache.commons:commons-text:1.9',
lombok: 'org.projectlombok:lombok:1.18.12'
lombok: 'org.projectlombok:lombok:1.18.12',
reflection_object: 'ru.dmitriymx:reflection-object:1.0-BETA'
]
}
@@ -44,4 +46,5 @@ dependencies {
compileOnly2 libs.bukkit
implementation libs.commons_text
implementation libs.reflection_object
}