Factor out common versions in build files

This commit is contained in:
Frank van der Heijden 2021-08-04 20:35:58 +02:00
parent fd69f74b22
commit 44fb0e00b3
No known key found for this signature in database
GPG key ID: B808721C2DD5B5B8
5 changed files with 23 additions and 19 deletions

View file

@ -13,10 +13,10 @@ repositories {
}
dependencies {
implementation "com.github.FrankHeijden.cloud:cloud-velocity:${rootProject.cloudVersion}"
implementation 'org.bstats:bstats-velocity:2.2.1'
implementation "cloud.commandframework:cloud-velocity:${rootProject.cloudVersion}"
implementation "org.bstats:bstats-velocity:${rootProject.bstatsVersion}"
implementation project(":Common")
implementation ('net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT') {
implementation ("net.kyori:adventure-text-minimessage:${rootProject.adventureMinimessageVersion}") {
exclude group: 'net.kyori', module: 'adventure-api'
}
compileOnly 'com.velocitypowered:velocity-api:3.0.0'