mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-16 07:15:14 +01:00
097888c72a
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: 78ca16df Minecraft 1.19.1 support adc32d5a #3367: Add linux aarch64 native epoll support 12e45148 #3355,#3357: Fix possible NPE's in LoginEvent & PreLoginEvent
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
From b526187ee2b182930850ced2708a2770b669c949 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 cf0a6a99..1d370c70 100644
|
|
--- a/proxy/pom.xml
|
|
+++ b/proxy/pom.xml
|
|
@@ -124,4 +124,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.37.1
|
|
|