mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-16 07:15:14 +01:00
29849ac41f
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing BungeeCord Changes: 77907839 #3436, #3441: Check if server icon image is null f4534c82 #3446: Fix < 1.19 support 76673f02 Apply dependabot configuration b47ae094 #3444: Use same duplicate player handling for online and offline modes
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
From f090bbf4ac1184c000210d21a7485c3cb7f24b13 Mon Sep 17 00:00:00 2001
|
|
From: Mark Vainomaa <mikroskeem@mikroskeem.eu>
|
|
Date: Wed, 18 Jul 2018 20:23:03 +0300
|
|
Subject: [PATCH] Copy license files into jar
|
|
|
|
|
|
diff --git a/proxy/pom.xml b/proxy/pom.xml
|
|
index 5135c0fd..233c6aae 100644
|
|
--- a/proxy/pom.xml
|
|
+++ b/proxy/pom.xml
|
|
@@ -119,4 +119,26 @@
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
+
|
|
+ <!-- Waterfall start - copy license files into jar -->
|
|
+ <build>
|
|
+ <resources>
|
|
+ <resource>
|
|
+ <directory>src/main/resources</directory>
|
|
+ </resource>
|
|
+ <resource>
|
|
+ <directory>../</directory>
|
|
+ <includes>
|
|
+ <include>LICENSE</include>
|
|
+ </includes>
|
|
+ </resource>
|
|
+ <resource>
|
|
+ <directory>../../</directory>
|
|
+ <includes>
|
|
+ <include>LICENSE.txt</include>
|
|
+ </includes>
|
|
+ </resource>
|
|
+ </resources>
|
|
+ </build>
|
|
+ <!-- Waterfall end -->
|
|
</project>
|
|
--
|
|
2.17.2 (Apple Git-113)
|
|
|