mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
16 lines
294 B
Groovy
16 lines
294 B
Groovy
|
apply plugin: 'eclipse'
|
||
|
apply plugin: 'idea'
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':Core')
|
||
|
compile 'org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT'
|
||
|
compile 'net.milkbowl.vault:VaultAPI:1.5'
|
||
|
}
|
||
|
|
||
|
shadowJar {
|
||
|
dependencies {
|
||
|
include(dependency(':Core'))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
build.dependsOn(shadowJar)
|