mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-04 18:09:32 +01:00
b2fe4c9c71
(None of them are implementation-specific)
31 lines
746 B
Groovy
31 lines
746 B
Groovy
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
dependencies {
|
|
compile 'com.sk89q.worldedit:worldedit-core:7.0.0-SNAPSHOT'
|
|
compile 'com.sk89q.intake:intake:4.2-SNAPSHOT'
|
|
compile 'com.sk89q:squirrelid:0.2.0'
|
|
compile 'org.flywaydb:flyway-core:3.0'
|
|
compile 'org.khelekore:prtree:1.5.0'
|
|
compile 'com.google.code.findbugs:jsr305:1.3.9'
|
|
testCompile 'junit:junit:4.11'
|
|
testCompile 'org.hamcrest:hamcrest-library:1.2.1'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'src/main/java'
|
|
}
|
|
resources {
|
|
srcDir 'src/main/resources'
|
|
}
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
relocate('com.sk89q.squirrelid', 'com.sk89q.worldguard.util.profile')
|
|
}
|
|
|
|
build.dependsOn(shadowJar { classifier = null })
|