Factor out common versions in build files
This commit is contained in:
parent
fd69f74b22
commit
44fb0e00b3
5 changed files with 23 additions and 19 deletions
|
|
@ -5,13 +5,13 @@ version = rootProject.version
|
|||
archivesBaseName = rootProject.name + '-Bukkit'
|
||||
|
||||
dependencies {
|
||||
implementation "com.github.FrankHeijden.cloud:cloud-paper:${rootProject.cloudVersion}"
|
||||
implementation 'net.kyori:adventure-api:4.8.1'
|
||||
implementation 'net.kyori:adventure-platform-bukkit:4.0.0-SNAPSHOT'
|
||||
implementation ('net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT') {
|
||||
implementation "cloud.commandframework:cloud-paper:${rootProject.cloudVersion}"
|
||||
implementation "net.kyori:adventure-api:${rootProject.adventureVersion}"
|
||||
implementation "net.kyori:adventure-platform-bukkit:${rootProject.adventurePlatformVersion}"
|
||||
implementation ("net.kyori:adventure-text-minimessage:${rootProject.adventureMinimessageVersion}") {
|
||||
exclude group: 'net.kyori', module: 'adventure-api'
|
||||
}
|
||||
implementation 'org.bstats:bstats-bukkit:2.2.1'
|
||||
implementation "org.bstats:bstats-bukkit:${rootProject.bstatsVersion}"
|
||||
implementation project(":Common")
|
||||
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue