diff options
Diffstat (limited to 'spark-sponge8/build.gradle')
-rw-r--r-- | spark-sponge8/build.gradle | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/spark-sponge8/build.gradle b/spark-sponge8/build.gradle index 4f23011..80fbd04 100644 --- a/spark-sponge8/build.gradle +++ b/spark-sponge8/build.gradle @@ -15,7 +15,7 @@ processResources { from(sourceSets.main.resources.srcDirs) { include 'META-INF/plugins.json' expand ( - version: project.version, + version: project.pluginVersion, description: project.pluginDescription ) } @@ -24,8 +24,13 @@ processResources { shadowJar { archiveFileName = 'spark-sponge8.jar' + dependencies { + exclude(dependency('net.kyori:^(?!adventure-text-feature-pagination).+$')) + } + relocate 'okio', 'me.lucko.spark.lib.okio' relocate 'okhttp3', 'me.lucko.spark.lib.okhttp3' + relocate 'net.kyori.adventure.text.feature.pagination', 'me.lucko.spark.lib.adventure.pagination' 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' |