aboutsummaryrefslogtreecommitdiff
path: root/spark-universal/build.gradle
diff options
context:
space:
mode:
authorLuck <git@lucko.me>2020-04-01 22:33:16 +0100
committerLuck <git@lucko.me>2020-04-01 22:33:16 +0100
commit66c983aa47be8395cd6d163f43842fd2042f4f3d (patch)
tree7fa69b2ef977f997b7087715319fba8ce5ab4907 /spark-universal/build.gradle
parent4f1b7cf51da218a5a4f55e4e75185efdb845ddc2 (diff)
downloadspark-66c983aa47be8395cd6d163f43842fd2042f4f3d.tar.gz
spark-66c983aa47be8395cd6d163f43842fd2042f4f3d.tar.bz2
spark-66c983aa47be8395cd6d163f43842fd2042f4f3d.zip
Relocate text lib, build a separate jar for velocity
Diffstat (limited to 'spark-universal/build.gradle')
-rw-r--r--spark-universal/build.gradle10
1 files changed, 1 insertions, 9 deletions
diff --git a/spark-universal/build.gradle b/spark-universal/build.gradle
index d758fb2..10c6e69 100644
--- a/spark-universal/build.gradle
+++ b/spark-universal/build.gradle
@@ -6,7 +6,6 @@ dependencies {
compile project(':spark-common')
compile project(':spark-bukkit')
compile project(':spark-bungeecord')
- compile project(':spark-velocity')
compile project(':spark-sponge')
}
@@ -15,6 +14,7 @@ shadowJar {
relocate 'okio', 'me.lucko.spark.lib.okio'
relocate 'okhttp3', 'me.lucko.spark.lib.okhttp3'
+ relocate 'net.kyori.text', 'me.lucko.spark.lib.text'
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'
@@ -25,11 +25,3 @@ artifacts {
shadow shadowJar
}
-// Only used occasionally for deployment - not needed for normal builds.
-/*
-apply plugin: 'signing'
-signing {
- useGpgCmd()
- sign configurations.archives
-}
-*/