summaryrefslogtreecommitdiffstats
path: root/docker-api
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-02-08 16:51:40 +0100
committerBjørn Christian Seime <bjorncs@oath.com>2018-02-08 16:51:40 +0100
commitf9a36577807aeab1ff0c5f3cfe2bc2bf458c63bb (patch)
tree96a979fa10da50d8f6326bc79981fd0fe31a0342 /docker-api
parentd33dcbba0577d968d661265d14e8d895fca9fa87 (diff)
Install docker-api-jar-with-dependencies as bundle classifier
Diffstat (limited to 'docker-api')
-rw-r--r--docker-api/pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/docker-api/pom.xml b/docker-api/pom.xml
index 449a94fb621..fc3407d08be 100644
--- a/docker-api/pom.xml
+++ b/docker-api/pom.xml
@@ -123,6 +123,29 @@
<extensions>true</extensions>
</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>bundle</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>