mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
26 lines
501 B
Groovy
26 lines
501 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'
|
|
}
|
|
|
|
processResources {
|
|
from('src/main/resources') {
|
|
include 'plugin.yml'
|
|
expand(
|
|
name: project.parent.name,
|
|
version: project.parent.version
|
|
)
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':Core'))
|
|
}
|
|
}
|
|
|
|
build.dependsOn(shadowJar) |