2016-12-07 03:46:39 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2019-06-13 15:17:00 +02:00
|
|
|
maven { url = "https://files.minecraftforge.net/maven" }
|
2016-12-07 03:46:39 +01:00
|
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-21 12:28:22 +02:00
|
|
|
plugins {
|
2018-10-08 14:32:07 +02:00
|
|
|
id 'org.spongepowered.plugin' version '0.9.0'
|
2016-05-21 12:28:22 +02:00
|
|
|
}
|
|
|
|
|
2018-09-20 14:59:42 +02:00
|
|
|
repositories {
|
2018-11-10 10:26:10 +01:00
|
|
|
maven { url "https://repo.codemc.org/repository/maven-public" }
|
2018-09-20 14:59:42 +02:00
|
|
|
}
|
|
|
|
|
2016-02-02 07:28:27 +01:00
|
|
|
dependencies {
|
|
|
|
compile project(':worldedit-core')
|
2019-04-21 08:11:39 +02:00
|
|
|
compile project(':worldedit-libs:sponge')
|
2018-12-24 13:07:09 +01:00
|
|
|
compile 'org.spongepowered:spongeapi:7.1.0'
|
2019-06-13 15:17:00 +02:00
|
|
|
compile 'org.bstats:bstats-sponge:1.5'
|
2016-02-02 07:28:27 +01:00
|
|
|
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0-rc1'
|
|
|
|
}
|
|
|
|
|
2017-05-06 08:53:28 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2016-02-02 07:28:27 +01:00
|
|
|
|
2016-05-21 12:28:22 +02:00
|
|
|
sponge {
|
|
|
|
plugin {
|
|
|
|
id = 'worldedit'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-02 07:28:27 +01:00
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes("Class-Path": "truezip.jar WorldEdit/truezip.jar js.jar WorldEdit/js.jar",
|
2016-05-21 12:28:22 +02:00
|
|
|
"WorldEdit-Version": version)
|
2016-02-02 07:28:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
2019-04-21 08:33:54 +02:00
|
|
|
relocate ("org.bstats", "com.sk89q.worldedit.sponge.bstats") {
|
2019-06-13 15:17:00 +02:00
|
|
|
include(dependency('org.bstats:bstats-sponge:1.5'))
|
2019-04-21 08:33:54 +02:00
|
|
|
}
|
2016-02-02 07:28:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 05:28:37 +01:00
|
|
|
if (project.hasProperty("signing")) {
|
|
|
|
apply plugin: 'signing'
|
|
|
|
|
|
|
|
signing {
|
|
|
|
sign shadowJar
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn('signShadowJar')
|
2018-01-14 03:41:14 +01:00
|
|
|
}
|