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
+25
View File
@@ -0,0 +1,25 @@
rootProject.name = "Chat"
include(":api")
include(":galaxy")
include(":velocity")
dependencyResolutionManagement {
repositories {
mavenLocal()
mavenCentral()
maven("https://repo.destro.xyz/snapshots") // Altitude - Galaxy
maven("https://oss.sonatype.org/content/groups/public/") // Adventure
maven("https://nexus.velocitypowered.com/repository/maven-public/") // Velocity
maven("https://repo.spongepowered.org/maven") // Configurate
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/") // Papi
maven("https://jitpack.io")
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
pluginManagement {
repositories {
gradlePluginPortal()
}
}