2014-12-02 15:02:13 +00:00
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
2018-06-11 13:45:19 +00:00
|
|
|
apply plugin: 'maven'
|
2014-12-02 15:02:13 +00:00
|
|
|
|
2016-03-08 00:26:16 +00:00
|
|
|
repositories {
|
|
|
|
maven { url "https://hub.spigotmc.org/nexus/content/groups/public" }
|
|
|
|
}
|
|
|
|
|
2014-11-14 19:27:39 +00:00
|
|
|
dependencies {
|
|
|
|
compile project(':worldedit-core')
|
2015-01-11 00:57:53 +00:00
|
|
|
compile 'com.sk89q:dummypermscompat:1.8'
|
2018-08-12 14:03:07 +00:00
|
|
|
compile 'com.destroystokyo.paper:paper-api:1.13-R0.1-SNAPSHOT'
|
2018-08-27 16:56:28 +00:00
|
|
|
compile "org.spigotmc:spigot-1.13:SNAPSHOT"
|
2014-11-14 19:27:39 +00:00
|
|
|
testCompile 'org.mockito:mockito-core:1.9.0-rc1'
|
2018-08-12 14:03:07 +00:00
|
|
|
compile 'net.milkbowl.vault:VaultAPI:1.5.6'
|
|
|
|
compile 'com.massivecraft:factions:2.8.0'
|
|
|
|
compile 'com.drtshock:factions:1.6.9.5'
|
|
|
|
compile 'com.factionsone:FactionsOne:1.2.2'
|
|
|
|
compile 'me.ryanhamshire:GriefPrevention:11.5.2'
|
|
|
|
compile 'com.massivecraft:mcore:7.0.1'
|
|
|
|
compile 'net.sacredlabyrinth.Phaed:PreciousStones:10.0.4-SNAPSHOT'
|
|
|
|
compile 'net.jzx7:regios:5.9.9'
|
|
|
|
compile 'com.bekvon.bukkit.residence:Residence:4.5._13.1'
|
|
|
|
compile 'com.palmergames.bukkit:towny:0.84.0.9'
|
|
|
|
compile 'com.worldcretornica:plotme_core:0.16.3'
|
|
|
|
compile 'com.thevoxelbox.voxelsniper:voxelsniper:5.171.0'
|
|
|
|
compile 'com.comphenix.protocol:ProtocolLib-API:4.4.0-SNAPSHOT'
|
|
|
|
compile 'com.wasteofplastic:askyblock:3.0.8.2'
|
2018-08-15 13:30:42 +00:00
|
|
|
compile 'com.sk89q:worldguard-core:latest'
|
|
|
|
compile 'com.sk89q:worldguard-legacy:latest'
|
2018-12-17 11:43:45 +00:00
|
|
|
compile('org.inventivetalent:mapmanager:1.7.1-SNAPSHOT') {
|
2018-08-12 14:03:07 +00:00
|
|
|
transitive = false
|
|
|
|
}
|
2014-11-14 19:27:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
from (sourceSets.main.resources.srcDirs) {
|
2018-08-23 21:18:14 +00:00
|
|
|
expand 'internalVersion': project.internalVersion
|
2014-11-14 19:27:39 +00:00
|
|
|
include 'plugin.yml'
|
|
|
|
}
|
|
|
|
|
|
|
|
from (sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude 'plugin.yml'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-14 10:41:52 +00:00
|
|
|
jar.archiveName="fawe-bukkit-${project.parent.version}.jar"
|
|
|
|
jar.destinationDir = file '../mvn/com/boydti/fawe-bukkit/' + project.parent.version
|
|
|
|
task createPom << {
|
|
|
|
pom {
|
|
|
|
project {
|
|
|
|
groupId 'com.boydti'
|
|
|
|
artifactId 'fawe-bukkit'
|
|
|
|
version project.parent.version
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.getEffectivePom()
|
|
|
|
.setDependencies(new ArrayList<>())
|
|
|
|
.writeTo("../mvn/com/boydti/fawe-bukkit/${project.parent.version}/fawe-bukkit-${project.parent.version}.pom")
|
|
|
|
pom {
|
|
|
|
project {
|
|
|
|
groupId 'com.boydti'
|
|
|
|
artifactId 'fawe-bukkit'
|
|
|
|
version 'latest'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.getEffectivePom()
|
|
|
|
.setDependencies(new ArrayList<>())
|
|
|
|
.writeTo("../mvn/com/boydti/fawe-bukkit/latest/fawe-bukkit-latest.pom")
|
|
|
|
}
|
|
|
|
task copyFiles {
|
|
|
|
doLast {
|
|
|
|
copy {
|
|
|
|
from "../mvn/com/boydti/fawe-bukkit/${project.parent.version}/"
|
|
|
|
into '../mvn/com/boydti/fawe-bukkit/latest/'
|
|
|
|
include('*.jar')
|
|
|
|
rename ("fawe-bukkit-${project.parent.version}.jar", 'fawe-bukkit-latest.jar')
|
|
|
|
}
|
2014-11-14 19:27:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency(':worldedit-core'))
|
|
|
|
}
|
2018-08-12 17:38:20 +00:00
|
|
|
archiveName = "${parent.name}-${project.name.replaceAll("worldedit-", "")}-${parent.version}.jar"
|
2018-08-12 14:03:07 +00:00
|
|
|
destinationDir = file '../target'
|
2014-11-14 19:27:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|
2018-08-14 10:41:52 +00:00
|
|
|
build.finalizedBy(copyFiles)
|
2018-09-25 05:35:21 +00:00
|
|
|
copyFiles.dependsOn(createPom)
|