diff options
author | Luck <git@lucko.me> | 2022-02-06 20:25:07 +0000 |
---|---|---|
committer | Luck <git@lucko.me> | 2022-02-06 20:25:07 +0000 |
commit | 25f46b649363d99f51b1b5262b5f7c0ce0c3251b (patch) | |
tree | d6e0350051d0e14d62bbd9764797ce334bf947f7 /spark-bungeecord | |
parent | c5494d20ce8c3c8868f0fc8e19a03d7888c6fe78 (diff) | |
download | spark-25f46b649363d99f51b1b5262b5f7c0ce0c3251b.tar.gz spark-25f46b649363d99f51b1b5262b5f7c0ce0c3251b.tar.bz2 spark-25f46b649363d99f51b1b5262b5f7c0ce0c3251b.zip |
Improve build tooling
- add version to output file name
- check license headers automatically
Diffstat (limited to 'spark-bungeecord')
-rw-r--r-- | spark-bungeecord/build.gradle | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/spark-bungeecord/build.gradle b/spark-bungeecord/build.gradle index f1a6db5..ccea89d 100644 --- a/spark-bungeecord/build.gradle +++ b/spark-bungeecord/build.gradle @@ -1,3 +1,7 @@ +plugins { + id 'com.github.johnrengelman.shadow' version '7.0.0' +} + dependencies { implementation project(':spark-common') implementation('me.lucko:adventure-platform-bungeecord:4.9.4') { @@ -18,4 +22,27 @@ processResources { ) include 'bungee.yml' } -}
\ No newline at end of file +} + +shadowJar { + archiveName = "spark-${project.pluginVersion}-bungeecord.jar" + + relocate 'okio', 'me.lucko.spark.lib.okio' + relocate 'okhttp3', 'me.lucko.spark.lib.okhttp3' + relocate 'net.kyori.adventure', 'me.lucko.spark.lib.adventure' + relocate 'net.kyori.examination', 'me.lucko.spark.lib.adventure.examination' + relocate 'net.bytebuddy', 'me.lucko.spark.lib.bytebuddy' + 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' + relocate 'one.profiler', 'me.lucko.spark.lib.asyncprofiler' + + exclude 'module-info.class' + exclude 'META-INF/maven/**' + exclude 'META-INF/proguard/**' +} + +artifacts { + archives shadowJar + shadow shadowJar +} |