2016-05-21 10:28:22 +00:00
|
|
|
plugins {
|
2016-06-28 08:40:42 +00:00
|
|
|
id 'org.spongepowered.plugin' version '0.6'
|
2016-05-21 10:28:22 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 06:28:27 +00:00
|
|
|
dependencies {
|
|
|
|
compile project(':worldedit-core')
|
2016-11-17 03:30:53 +00:00
|
|
|
compile 'org.spongepowered:spongeapi:6.0.0-SNAPSHOT'
|
2016-02-02 06:28:27 +00:00
|
|
|
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0-rc1'
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
2016-05-21 10:28:22 +00:00
|
|
|
sponge {
|
|
|
|
plugin {
|
|
|
|
id = 'worldedit'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-02 06:28:27 +00:00
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes("Class-Path": "truezip.jar WorldEdit/truezip.jar js.jar WorldEdit/js.jar",
|
2016-05-21 10:28:22 +00:00
|
|
|
"WorldEdit-Version": version)
|
2016-02-02 06:28:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency(':worldedit-core'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
2016-11-19 01:43:22 +00:00
|
|
|
archives shadowJar
|
2016-02-02 06:28:27 +00:00
|
|
|
}
|