Use gradle to build the plugin

This commit is contained in:
destro174
2021-12-11 18:59:45 +01:00
parent a2246fea4a
commit b183c369d2
15 changed files with 406 additions and 548 deletions
+11
View File
@@ -0,0 +1,11 @@
plugins {
`maven-publish`
}
dependencies {
implementation(project(":api")) // API
compileOnly("com.velocitypowered:velocity-api:3.0.0") // Velocity
annotationProcessor("com.velocitypowered:velocity-api:3.0.0")
implementation("mysql:mysql-connector-java:8.0.23") // mysql
compileOnly("net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT") // Minimessage
}