mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-13 05:54:40 +01:00
Fix spigot jar shading
This commit is contained in:
parent
b2f04ce112
commit
e0c02b1fc0
@ -9,9 +9,9 @@ eclipse {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(path: ':DynmapCoreAPI', configuration: 'shadow')
|
||||
implementation project(':DynmapCoreAPI')
|
||||
implementation 'javax.servlet:javax.servlet-api:3.1'
|
||||
implementation 'org.eclipse.jetty:jetty-server:9.4.26.v20200117'
|
||||
implementation'org.eclipse.jetty:jetty-server:9.4.26.v20200117'
|
||||
implementation 'org.eclipse.jetty:jetty-servlet:9.4.26.v20200117'
|
||||
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
|
||||
implementation 'org.yaml:snakeyaml:1.23' // DON'T UPDATE - NEWER ONE TRIPS ON WINDOWS ENCODED FILES
|
||||
|
@ -9,8 +9,8 @@ eclipse {
|
||||
description = "dynmap-api"
|
||||
|
||||
dependencies {
|
||||
implementation group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
|
||||
implementation project(":DynmapCoreAPI")
|
||||
compileOnly group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
|
||||
compileOnly project(":DynmapCoreAPI")
|
||||
}
|
||||
|
||||
jar {
|
||||
|
@ -17,21 +17,21 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly group: 'org.bukkit', name: 'bukkit', version: '1.10.2-R0.1-SNAPSHOT'
|
||||
compileOnly 'com.nijikokun.bukkit:Permissions:3.1.6'
|
||||
compileOnly 'me.lucko.luckperms:luckperms-api:4.3'
|
||||
compileOnly 'net.luckperms:api:5.0'
|
||||
implementation('org.bukkit:bukkit:1.10.2-R0.1-SNAPSHOT') { transitive = false }
|
||||
compileOnly('com.nijikokun.bukkit:Permissions:3.1.6') { transitive = false }
|
||||
compileOnly('me.lucko.luckperms:luckperms-api:4.3') { transitive = false }
|
||||
compileOnly('net.luckperms:api:5.0') { transitive = false }
|
||||
compileOnly('com.github.MilkBowl:VaultAPI:1.7') { transitive = false }
|
||||
compileOnly 'net.skinsrestorer:skinsrestorer-api:14.2.+'
|
||||
implementation project(":dynmap-api")
|
||||
implementation project(path: ":DynmapCore", configuration: "shadow")
|
||||
compileOnly group: 'ru.tehkode', name: 'PermissionsEx', version: '1.19.1'
|
||||
compileOnly group: 'de.bananaco', name: 'bPermissions', version: '2.9.1'
|
||||
compileOnly group: 'com.platymuus.bukkit.permissions', name: 'PermissionsBukkit', version: '1.6'
|
||||
compileOnly group: 'org.anjocaido', name: 'EssentialsGroupManager', version: '2.10.1'
|
||||
compileOnly('net.skinsrestorer:skinsrestorer-api:14.2.+') { transitive = false }
|
||||
implementation(project(":dynmap-api")) { transitive = false }
|
||||
implementation(project(path: ":DynmapCore", configuration: "shadow")) { transitive = false }
|
||||
compileOnly('ru.tehkode:PermissionsEx:1.19.1') { transitive = false }
|
||||
compileOnly('de.bananaco:bPermissions:2.9.1') { transitive = false }
|
||||
compileOnly('com.platymuus.bukkit.permissions:PermissionsBukkit:1.6') { transitive = false }
|
||||
compileOnly('org.anjocaido:EssentialsGroupManager:2.10.1') { transitive = false }
|
||||
implementation group: 'org.bstats', name: 'bstats-bukkit', version: '2.2.1'
|
||||
compileOnly group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
||||
compileOnly group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
|
||||
compileOnly('com.googlecode.json-simple:json-simple:1.1.1') { transitive = false }
|
||||
compileOnly('com.google.code.gson:gson:2.8.9') { transitive = false }
|
||||
implementation(project(':bukkit-helper')) {
|
||||
transitive = false
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user