mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-05 02:19:30 +01:00
2aee42cbf2
Either I broke something, or you were using WG's jar for some dep that we don't consider to be API.
32 lines
781 B
Groovy
32 lines
781 B
Groovy
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
dependencies {
|
|
api 'com.sk89q.worldedit:worldedit-core:7.0.0-SNAPSHOT'
|
|
implementation 'com.sk89q.intake:intake:4.2-SNAPSHOT'
|
|
implementation 'com.sk89q:squirrelid:0.2.0'
|
|
implementation 'org.flywaydb:flyway-core:3.0'
|
|
implementation 'org.khelekore:prtree:1.5.0'
|
|
|
|
api 'com.google.code.findbugs:jsr305:1.3.9'
|
|
testImplementation 'junit:junit:4.11'
|
|
testImplementation '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 })
|