Improve the velocity module

This commit is contained in:
Alexander Söderberg 2020-10-14 20:09:18 +02:00 committed by Alexander Söderberg
parent 9761c0fadf
commit edc5249244
10 changed files with 579 additions and 2 deletions

View file

@ -0,0 +1,17 @@
apply plugin: "com.github.johnrengelman.shadow"
shadowJar {
dependencies {
exclude(dependency('com.velocitypowered:velocity-api'))
}
}
build.dependsOn(shadowJar)
dependencies {
api project(':cloud-velocity')
api project(':cloud-minecraft-extras')
api project(':cloud-annotations')
compileOnly('com.velocitypowered:velocity-api:1.1.0-SNAPSHOT')
annotationProcessor('com.velocitypowered:velocity-api:1.1.0-SNAPSHOT')
}