Update adventure
This commit is contained in:
parent
1efeff9026
commit
990a503896
3 changed files with 16 additions and 7 deletions
|
|
@ -14,14 +14,21 @@ base {
|
|||
|
||||
dependencies {
|
||||
implementation("cloud.commandframework:cloud-paper:${VersionConstants.cloudVersion}")
|
||||
implementation("net.kyori:adventure-api:${VersionConstants.adventureVersion}")
|
||||
implementation("net.kyori:adventure-platform-bukkit:${VersionConstants.adventurePlatformVersion}")
|
||||
implementation("net.kyori:adventure-api:${VersionConstants.adventureVersion}") {
|
||||
exclude("net.kyori", "adventure-text-minimessage")
|
||||
}
|
||||
implementation("net.kyori:adventure-platform-bukkit:${VersionConstants.adventurePlatformVersion}") {
|
||||
exclude("net.kyori", "adventure-api")
|
||||
exclude("net.kyori", "adventure-text-minimessage")
|
||||
}
|
||||
implementation("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}") {
|
||||
exclude("net.kyori", "adventure-api")
|
||||
}
|
||||
implementation("org.bstats:bstats-bukkit:${VersionConstants.bstatsVersion}")
|
||||
implementation(project(":Common"))
|
||||
compileOnly("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT")
|
||||
compileOnly("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT") {
|
||||
exclude("net.kyori", "*")
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType<ShadowJar> {
|
||||
|
|
|
|||
|
|
@ -15,8 +15,10 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly("net.kyori:adventure-platform-api:${VersionConstants.adventurePlatformVersion}")
|
||||
compileOnly("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}")
|
||||
compileOnly("net.kyori:adventure-platform-api:${VersionConstants.adventurePlatformVersion}") {
|
||||
exclude("net.kyori", "adventure-api")
|
||||
exclude("net.kyori", "adventure-text-minimessage")
|
||||
}
|
||||
compileOnly("com.github.FrankHeijden:ServerUtilsUpdater:5f722b10d1")
|
||||
|
||||
testImplementation("net.kyori:adventure-text-serializer-plain:${VersionConstants.adventureVersion}")
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
object VersionConstants {
|
||||
const val cloudVersion = "1.8.0-SNAPSHOT"
|
||||
const val adventureVersion = "4.9.3"
|
||||
const val adventurePlatformVersion = "4.0.1"
|
||||
const val adventureVersion = "4.11.0"
|
||||
const val adventurePlatformVersion = "4.1.2"
|
||||
const val adventureMinimessageVersion = "4.2.0-SNAPSHOT"
|
||||
const val bstatsVersion = "3.0.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue