WorldGuard/worldguard-sponge/build.gradle
wizjany 3d5ee7b571 Gradle-ize. Prep for Sponge.
Old Bukkit code can still be found in the worldguard-legacy folder
and built with `gradle worldguard-legacy:build`. Hopefully nothing
got lost in the gradle-ization.
2015-11-13 19:12:55 -05:00

17 lines
275 B
Groovy

apply plugin: 'eclipse'
apply plugin: 'idea'
dependencies {
compile project(':worldguard-core')
compile 'org.spongepowered:spongeapi:2.1-SNAPSHOT'
}
shadowJar {
dependencies {
include(dependency(':worldguard-core'))
}
}
build.dependsOn(shadowJar)