oblak/cloud-minecraft/cloud-velocity-test/build.gradle
Alexander Söderberg 4ca47777a3 Switch to gradle
2020-09-30 10:40:44 +02:00

19 lines
528 B
Groovy

apply plugin: 'com.github.johnrengelman.shadow'
def adventureVersion = '4.0.0-SNAPSHOT'
shadowJar {
dependencies {
include(project(':cloud-velocity'))
include(project(':cloud-annotations'))
include(project(':cloud-core'))
include(project(':cloud-services'))
include(project(':cloud-brigadier'))
}
}
dependencies {
implementation project(':cloud-velocity')
implementation project(':cloud-annotations')
compileOnly 'com.velocitypowered:velocity-api:1.1.0-SNAPSHOT'
}