mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00: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)
|