summaryrefslogtreecommitdiffstats
path: root/vespaclient-java
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2022-02-02 16:10:47 +0100
committerGitHub <noreply@github.com>2022-02-02 16:10:47 +0100
commit4ff671f8d5095d6d513a9c4b317282cc81e81c93 (patch)
tree17da0941e5368677a2b205c6fe7139adfd0c6101 /vespaclient-java
parent3c0146091cb7d06b8a436b5051a356894b0166c5 (diff)
Revert "Exclude META-INF files and module-info.class from uber jars."
Diffstat (limited to 'vespaclient-java')
-rw-r--r--vespaclient-java/pom.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/vespaclient-java/pom.xml b/vespaclient-java/pom.xml
index 57f0a0b6125..d8530fd9d82 100644
--- a/vespaclient-java/pom.xml
+++ b/vespaclient-java/pom.xml
@@ -77,10 +77,12 @@
<finalName>${project.artifactId}-jar-with-dependencies</finalName>
<filters>
<filter>
+ <!-- Don't include signature files in uber jar (most likely from bouncycastle). -->
<artifact>*:*</artifact>
<excludes>
- <exclude>META-INF/**</exclude>
- <exclude>module-info.class</exclude>
+ <exclude>META-INF/*.SF</exclude>
+ <exclude>META-INF/*.DSA</exclude>
+ <exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>