oblak/examples/example-velocity/build.gradle
2020-10-28 16:43:50 +01:00

17 lines
438 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')
annotationProcessor('com.velocitypowered:velocity-api:1.1.0')
}