Switch to gradle build
This commit is contained in:
parent
3807de6238
commit
ef3a8c356c
17 changed files with 770 additions and 681 deletions
53
bukkit/build.gradle
Normal file
53
bukkit/build.gradle
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
|
||||
description = 'dynmap'
|
||||
|
||||
dependencies {
|
||||
compile group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
|
||||
compile 'com.nijikokun.bukkit:Permissions:3.1.6'
|
||||
compile "us.dynmap:dynmap-api:${project.version}"
|
||||
compile "us.dynmap:DynmapCore:${project.version}"
|
||||
compile group: 'ru.tehkode', name: 'PermissionsEx', version:'1.19.1'
|
||||
compile group: 'de.bananaco', name: 'bPermissions', version:'2.9.1'
|
||||
compile group: 'com.platymuus.bukkit.permissions', name: 'PermissionsBukkit', version:'1.6'
|
||||
compile group: 'org.anjocaido', name: 'EssentialsGroupManager', version:'2.10.1'
|
||||
compile group: 'org.bstats', name: 'bstats-bukkit', version:'1.1'
|
||||
compile group: 'com.googlecode.json-simple', name: 'json-simple', version:'1.1.1'
|
||||
compile group: 'com.google.code.gson', name: 'gson', version:'2.8.2'
|
||||
compile project(':dynmap-helper')
|
||||
implementation(project(':dynmap-helper-113')) {
|
||||
transitive = false
|
||||
}
|
||||
}
|
||||
|
||||
processResources {
|
||||
// replace stuff in mcmod.info, nothing else
|
||||
from('src/main/resources') {
|
||||
include "plugin.yml"
|
||||
// replace version and mcversion
|
||||
expand(
|
||||
buildnumber: project.parent.ext.globals.buildNumber,
|
||||
version: project.version
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
jar {
|
||||
classifier = 'unshaded'
|
||||
}
|
||||
|
||||
shadowJar {
|
||||
dependencies {
|
||||
include(dependency('org.bstats::'))
|
||||
include(dependency('us.dynmap:dynmap-api:'))
|
||||
include(dependency('us.dynmap:DynmapCore:'))
|
||||
include(dependency(':dynmap-helper'))
|
||||
include(dependency(':dynmap-helper-113'))
|
||||
}
|
||||
relocate('org.bstats', 'org.dynmap.bstats')
|
||||
destinationDir = file '../target'
|
||||
classifier = ''
|
||||
}
|
||||
|
||||
artifacts {
|
||||
archives shadowJar
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue