mirror of
https://github.com/PaperMC/Waterfall.git
synced 2025-02-14 02:41:38 +01:00
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: 5e25c63c #3646: Add experimental io_uring support bd963501 #3644: Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 da795a70 Minecraft 24w14a support
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
From 9e23f15ddcedd1ddda23827e564ecd3058687010 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 63bc0b32..a70f8c5c 100644
|
|
--- a/proxy/pom.xml
|
|
+++ b/proxy/pom.xml
|
|
@@ -131,4 +131,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.44.0
|
|
|