blob: 512a91085fc58dd2280b92762bff7b9564e33423 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Apache RAT (license audit...) complains for some reason about location.o,
causing maven to fail. This patch is a "dirty" workaround.
--- a/pom.xml
+++ b/pom.xml
@@ -136,6 +136,8 @@
<exclude>src/native/unix/config.nice</exclude>
<exclude>src/native/unix/config.status</exclude>
<exclude>src/native/unix/config.log</exclude>
+ <!-- Workaround for location.o -->
+ <exclude>src/native/unix/native/location.o</exclude>
</excludes>
</configuration>
</plugin>
|