oblak/examples/example-velocity/build.gradle
2020-10-24 19:52:44 +02:00

17 lines
456 B
Groovy

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')
}