From 66c983aa47be8395cd6d163f43842fd2042f4f3d Mon Sep 17 00:00:00 2001 From: Luck Date: Wed, 1 Apr 2020 22:33:16 +0100 Subject: Relocate text lib, build a separate jar for velocity --- spark-velocity/build.gradle | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'spark-velocity') diff --git a/spark-velocity/build.gradle b/spark-velocity/build.gradle index e90ed7f..51c0be8 100644 --- a/spark-velocity/build.gradle +++ b/spark-velocity/build.gradle @@ -1,5 +1,6 @@ plugins { id 'net.kyori.blossom' version '1.1.0' + id 'com.github.johnrengelman.shadow' version '4.0.1' } dependencies { @@ -12,4 +13,19 @@ blossom { replaceTokenIn('src/main/java/me/lucko/spark/velocity/VelocitySparkPlugin.java') replaceToken '@version@', project.pluginVersion replaceToken '@desc@', project.pluginDescription +} + +shadowJar { + archiveName = 'spark-velocity.jar' + + relocate 'okio', 'me.lucko.spark.lib.okio' + relocate 'okhttp3', 'me.lucko.spark.lib.okhttp3' + relocate 'org.tukaani.xz', 'me.lucko.spark.lib.xz' + relocate 'com.google.protobuf', 'me.lucko.spark.lib.protobuf' + relocate 'org.objectweb.asm', 'me.lucko.spark.lib.asm' +} + +artifacts { + archives shadowJar + shadow shadowJar } \ No newline at end of file -- cgit