-
-
Notifications
You must be signed in to change notification settings - Fork 308
Expand file tree
/
Copy path0002-Copy-license-files-into-jar.patch
More file actions
40 lines (37 loc) · 1.09 KB
/
0002-Copy-license-files-into-jar.patch
File metadata and controls
40 lines (37 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
From 21ef554afb37a2c0bf43a36f2f42ac6fd462d427 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 a5a23725..1cd10603 100644
--- a/proxy/pom.xml
+++ b/proxy/pom.xml
@@ -120,4 +120,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.53.0