mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-07 19:39:47 +01:00
3d5ee7b571
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.
17 lines
275 B
Groovy
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)
|