17 lines
456 B
Groovy
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')
|
|
}
|