summaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-04-08 13:24:26 +0200
committergjoranv <gv@verizonmedia.com>2022-04-08 13:24:26 +0200
commitd3812063841b30457ce4e4eacf82d14b3ec2ed69 (patch)
treeae5241ba6e462a6b54f551c76123993a5cf58e07 /vespa-http-client
parentb26fda7a547f9e2a9573941caa9edfc3fc0f1882 (diff)
Do not create dependency-reduced-pom.xml
- From maven-shade-plugin 3.3.0 (needed for JDK 17), the DRP is installed and used instead of the ordinary pom.xml, causing transitive dependencies to disappear for dependent modules.
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/pom.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/vespa-http-client/pom.xml b/vespa-http-client/pom.xml
index c4f7fd95ffd..0448b2b862b 100644
--- a/vespa-http-client/pom.xml
+++ b/vespa-http-client/pom.xml
@@ -169,7 +169,8 @@
<goal>shade</goal>
</goals>
<configuration>
- <outputFile>target/${project.artifactId}-jar-with-dependencies.jar</outputFile>
+ <finalName>${project.artifactId}-jar-with-dependencies</finalName>
+ <createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.yahoo.vespa.http.client.runner.Runner</mainClass>