Optimize struture
This commit is contained in:
parent
bc5735b791
commit
3e282db4c5
@ -72,14 +72,6 @@ subprojects {
|
|||||||
implementation("ch.jalu:configme:1.3.1") {
|
implementation("ch.jalu:configme:1.3.1") {
|
||||||
exclude("org.yaml", "snakeyaml")
|
exclude("org.yaml", "snakeyaml")
|
||||||
}
|
}
|
||||||
// bStats metrics
|
|
||||||
implementation("org.bstats:bstats-bukkit:3.0.2")
|
|
||||||
// ProtocolLib
|
|
||||||
compileOnly("com.comphenix.protocol:ProtocolLib:5.1.0")
|
|
||||||
// LuckPerms plugin
|
|
||||||
compileOnly("net.luckperms:api:5.4")
|
|
||||||
// PermissionsEx plugin
|
|
||||||
compileOnly("ru.tehkode:PermissionsEx:1.23.5-SNAPSHOT")
|
|
||||||
// Dependencies used by HAProxy feature
|
// Dependencies used by HAProxy feature
|
||||||
// implementation("io.netty:netty-codec-haproxy:4.1.104.Final")
|
// implementation("io.netty:netty-codec-haproxy:4.1.104.Final")
|
||||||
// compileOnly("commons-validator:commons-validator:1.8.0")
|
// compileOnly("commons-validator:commons-validator:1.8.0")
|
||||||
@ -117,7 +109,6 @@ subprojects {
|
|||||||
// Options
|
// Options
|
||||||
archiveAppendix.set("")
|
archiveAppendix.set("")
|
||||||
archiveClassifier.set("")
|
archiveClassifier.set("")
|
||||||
archiveBaseName.set("AuthMe")
|
|
||||||
destinationDirectory.set(file("$rootDir/outs"))
|
destinationDirectory.set(file("$rootDir/outs"))
|
||||||
// Kotlin
|
// Kotlin
|
||||||
relocate("kotlin.", "kolin200.")
|
relocate("kotlin.", "kolin200.")
|
||||||
|
|||||||
@ -1,6 +1,23 @@
|
|||||||
description = "Fork of the first authentication plugin for the Bukkit API!"
|
description = "Fork of the first authentication plugin for the Bukkit API!"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
// Adventure Bukkit
|
// Adventure Bukkit
|
||||||
implementation("net.kyori:adventure-platform-bukkit:4.3.2")
|
implementation("net.kyori:adventure-platform-bukkit:4.3.2")
|
||||||
|
|
||||||
|
// Hooks - Start
|
||||||
|
// bStats metrics
|
||||||
|
implementation("org.bstats:bstats-bukkit:3.0.2")
|
||||||
|
// ProtocolLib
|
||||||
|
compileOnly("com.comphenix.protocol:ProtocolLib:5.1.0")
|
||||||
|
// LuckPerms plugin
|
||||||
|
compileOnly("net.luckperms:api:5.4")
|
||||||
|
// PermissionsEx plugin
|
||||||
|
compileOnly("ru.tehkode:PermissionsEx:1.23.5-SNAPSHOT")
|
||||||
|
// Hooks - End
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.shadowJar {
|
||||||
|
archiveBaseName.set("AuthMe-Bukkit")
|
||||||
}
|
}
|
||||||
@ -1 +1,7 @@
|
|||||||
dependencies {}
|
subprojects {
|
||||||
|
|
||||||
|
tasks {
|
||||||
|
build { dependsOn(shadowJar) }
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user