diff options
author | Luck <git@lucko.me> | 2020-04-01 22:33:16 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2020-04-01 22:33:16 +0100 |
commit | 66c983aa47be8395cd6d163f43842fd2042f4f3d (patch) | |
tree | 7fa69b2ef977f997b7087715319fba8ce5ab4907 /spark-velocity | |
parent | 4f1b7cf51da218a5a4f55e4e75185efdb845ddc2 (diff) | |
download | spark-66c983aa47be8395cd6d163f43842fd2042f4f3d.tar.gz spark-66c983aa47be8395cd6d163f43842fd2042f4f3d.tar.bz2 spark-66c983aa47be8395cd6d163f43842fd2042f4f3d.zip |
Relocate text lib, build a separate jar for velocity
Diffstat (limited to 'spark-velocity')
-rw-r--r-- | spark-velocity/build.gradle | 16 |
1 files changed, 16 insertions, 0 deletions
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 |