mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-04 18:09:32 +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.
24 lines
466 B
Groovy
24 lines
466 B
Groovy
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
dependencies {
|
|
compile 'com.sk89q.worldedit:worldedit-core:6.1.1-SNAPSHOT'
|
|
compile 'com.sk89q.intake:intake:4.2-SNAPSHOT'
|
|
compile 'com.sk89q:squirrelid:0.1.0'
|
|
compile 'org.flywaydb:flyway-core:3.0'
|
|
compile 'org.khelekore:prtree:1.5.0'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'src/main/java'
|
|
}
|
|
resources {
|
|
srcDir 'src/main/resources'
|
|
}
|
|
}
|
|
}
|
|
|
|
build.dependsOn(shadowJar)
|