Move shaded libraries to their own artifacts

This commit is contained in:
Kenzie Togami
2019-04-20 23:11:39 -07:00
parent 5b1573a24e
commit 1e7b4fc835
22 changed files with 165 additions and 72 deletions

View File

@@ -1,3 +1,8 @@
rootProject.name = 'worldedit'
include 'worldedit-core', 'worldedit-bukkit', 'worldedit-forge', 'worldedit-sponge'
include 'worldedit-libs'
['bukkit', 'core', 'forge', 'sponge'].forEach {
include "worldedit-libs:$it"
include "worldedit-$it"
}