summaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-02-02 11:49:25 +0100
committergjoranv <gv@verizonmedia.com>2022-02-02 11:49:25 +0100
commit59560cd96cbfb16d9395f667aab7cc87c75072cf (patch)
tree21322049244e2b4a8333745c564b68811d824632 /vespa-http-client
parentfe37932e6418d3d7a8bbea2f4ca5f727b67e8d00 (diff)
Exclude META-INF files and module-info.class from uber jars.
- Generate countless warnings for duplicates and breaking encapsulation.
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/pom.xml6
1 files changed, 2 insertions, 4 deletions
diff --git a/vespa-http-client/pom.xml b/vespa-http-client/pom.xml
index b25f54362ed..f2a21a259b0 100644
--- a/vespa-http-client/pom.xml
+++ b/vespa-http-client/pom.xml
@@ -172,12 +172,10 @@
<outputFile>target/${project.artifactId}-jar-with-dependencies.jar</outputFile>
<filters>
<filter>
- <!-- Don't include signature files in uber jar (most likely from bouncycastle). -->
<artifact>*:*</artifact>
<excludes>
- <exclude>META-INF/*.SF</exclude>
- <exclude>META-INF/*.DSA</exclude>
- <exclude>META-INF/*.RSA</exclude>
+ <exclude>META-INF/**</exclude>
+ <exclude>module-info.class</exclude>
</excludes>
</filter>
</filters>