2016-12-07 02:46:39 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url = "http://files.minecraftforge.net/maven" }
|
|
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-21 10:28:22 +00:00
|
|
|
plugins {
|
2018-01-14 02:41:14 +00:00
|
|
|
id 'signing'
|
2017-05-06 06:53:28 +00:00
|
|
|
id 'org.spongepowered.plugin' version '0.8.1'
|
2016-05-21 10:28:22 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 06:28:27 +00:00
|
|
|
dependencies {
|
|
|
|
compile project(':worldedit-core')
|
2017-09-17 06:41:39 +00:00
|
|
|
compile 'org.spongepowered:spongeapi:7.0.0-SNAPSHOT'
|
2016-02-02 06:28:27 +00:00
|
|
|
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0-rc1'
|
|
|
|
}
|
|
|
|
|
2017-05-06 06:53:28 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2016-02-02 06:28:27 +00:00
|
|
|
|
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
|
|
|
}
|
2018-01-14 02:41:14 +00:00
|
|
|
|
|
|
|
signing {
|
|
|
|
required false
|
|
|
|
sign shadowJar
|
|
|
|
}
|