Paper/Spigot-Server-Patches/0047-Fix-jar-being-shaded-multiple-times.patch

22 lines
748 B
Diff
Raw Normal View History

2015-06-04 10:42:09 +02:00
From f8a08f5a78478854fa5b0d9eefa87cf6db3c8c08 Mon Sep 17 00:00:00 2001
2015-05-19 02:06:10 +02:00
From: Jedediah Smith <jedediah@silencegreys.com>
Date: Thu, 30 Apr 2015 22:42:34 -0400
Subject: [PATCH] Fix jar being shaded multiple times
diff --git a/pom.xml b/pom.xml
2015-05-30 08:11:16 +02:00
index 6aeddce..60c1bd0 100644
2015-05-19 02:06:10 +02:00
--- a/pom.xml
+++ b/pom.xml
@@ -138,6 +138,7 @@
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
+ <forceCreation>true</forceCreation> <!-- Required to prevent shading the jar multiple times -->
<archive>
<manifestEntries>
<Main-Class>org.bukkit.craftbukkit.Main</Main-Class>
--
2015-06-04 10:42:09 +02:00
1.9.5.msysgit.1
2015-05-19 02:06:10 +02:00