mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-15 07:05:32 +01:00
56 lines
1.3 KiB
Groovy
56 lines
1.3 KiB
Groovy
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
repositories {
|
|
maven {
|
|
name = 'bstats repo'
|
|
url = 'https://repo.codemc.org/repository/maven-public'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(path: ':worldguard-core', configuration: 'shadow')
|
|
api 'org.bukkit:bukkit:1.14.2-R0.1-SNAPSHOT'
|
|
api ('com.sk89q.worldedit:worldedit-bukkit:7.0.1-SNAPSHOT') {
|
|
exclude group: 'io.papermc', module: 'paperlib'
|
|
}
|
|
implementation ('com.sk89q:commandbook:2.3') {
|
|
exclude group: 'com.sk89q', module: 'worldedit'
|
|
exclude group: 'com.zachsthings.libcomponents'
|
|
exclude group: 'org.bukkit'
|
|
exclude group: 'net.sf.opencsv'
|
|
}
|
|
implementation 'org.bstats:bstats-bukkit:1.5'
|
|
}
|
|
|
|
processResources {
|
|
from (sourceSets.main.resources.srcDirs) {
|
|
expand project.properties
|
|
include 'plugin.yml'
|
|
}
|
|
|
|
from (sourceSets.main.resources.srcDirs) {
|
|
exclude 'plugin.yml'
|
|
}
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes("Implementation-Version": version)
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':worldguard-core'))
|
|
relocate ("org.bstats", "com.sk89q.worldguard.bukkit.bstats") {
|
|
include(dependency("org.bstats:bstats-bukkit:1.5"))
|
|
}
|
|
}
|
|
|
|
relocate('org.flywaydb', 'com.sk89q.worldguard.internal.flywaydb')
|
|
|
|
}
|
|
|
|
build.dependsOn(shadowJar)
|