summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Aune <kkraune@users.noreply.github.com>2021-03-03 20:39:51 +0100
committerGitHub <noreply@github.com>2021-03-03 20:39:51 +0100
commit26ba1a2c7e3882ff0649e9a6981887d4b7807f67 (patch)
tree14e872938594eef6d013e0c9312e44ca52a2536e
parent2f22e271170ae26113d86fe8452925c59151a07a (diff)
parentb76b02ffa3290d2a399fbf52eb06b936764532c0 (diff)
Merge pull request #16767 from vespa-engine/aressem/deploy-http-client-with-deps
Deploy the vespa-http-client with dependencies.
-rw-r--r--vespa-http-client/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/vespa-http-client/pom.xml b/vespa-http-client/pom.xml
index 496b8043abb..19161e720ba 100644
--- a/vespa-http-client/pom.xml
+++ b/vespa-http-client/pom.xml
@@ -191,6 +191,28 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <file>target/${project.artifactId}-jar-with-dependencies.jar</file>
+ <type>jar</type>
+ <classifier>jar-with-dependencies</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>