2015-11-14 01:12:55 +01:00
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
2018-07-19 16:06:02 +02:00
|
|
|
project.version = '7.0.0-SNAPSHOT'
|
2016-01-11 07:04:59 +01:00
|
|
|
ext.internalVersion = project.version + ";" + gitCommitHash
|
2015-11-14 01:12:55 +01:00
|
|
|
|
2017-09-16 22:48:38 +02:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2016-03-02 21:59:31 +01:00
|
|
|
|
2015-11-14 02:04:51 +01:00
|
|
|
checkstyle.configFile = new File(projectDir, "config/checkstyle/checkstyle.xml")
|
2015-11-14 01:12:55 +01:00
|
|
|
|
|
|
|
dependencies {
|
2018-07-19 16:06:02 +02:00
|
|
|
compile project(':worldguard-core')
|
2018-07-22 12:43:06 +02:00
|
|
|
compile 'org.bukkit:bukkit:1.13-R0.1-SNAPSHOT'
|
2018-07-19 16:06:02 +02:00
|
|
|
compile 'com.sk89q.worldedit:worldedit-bukkit:7.0.0-SNAPSHOT'
|
2016-06-11 07:22:40 +02:00
|
|
|
compile ('com.sk89q:commandbook:2.3') {
|
|
|
|
exclude group: 'com.sk89q', module: 'worldedit'
|
|
|
|
exclude group: 'com.zachsthings.libcomponents'
|
|
|
|
}
|
2015-11-14 01:12:55 +01:00
|
|
|
testCompile 'junit:junit:4.11'
|
|
|
|
testCompile 'org.hamcrest:hamcrest-library:1.2.1'
|
|
|
|
}
|
|
|
|
|
2016-01-11 07:04:59 +01:00
|
|
|
processResources {
|
|
|
|
from (sourceSets.main.resources.srcDirs) {
|
|
|
|
expand project.properties
|
|
|
|
include 'plugin.yml'
|
|
|
|
}
|
|
|
|
|
|
|
|
from (sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude 'plugin.yml'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-14 01:12:55 +01:00
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
2018-07-19 16:06:02 +02:00
|
|
|
include(dependency(':worldguard-core'))
|
2015-11-14 01:12:55 +01:00
|
|
|
}
|
2016-06-11 07:22:40 +02:00
|
|
|
|
2015-11-14 01:12:55 +01:00
|
|
|
relocate('org.flywaydb', 'com.sk89q.worldguard.internal.flywaydb')
|
|
|
|
relocate('com.sk89q.squirrelid', 'com.sk89q.worldguard.util.profile')
|
|
|
|
relocate('org.json.simple', 'com.sk89q.worldguard.util.jsonsimple')
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|