summaryrefslogtreecommitdiffstats
path: root/docker-api
diff options
context:
space:
mode:
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 8bccf7eec10..53c5c15a929 100644
--- a/docker-api/pom.xml
+++ b/docker-api/pom.xml
@@ -139,6 +139,29 @@
</compilerArgs>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.9.1</version>
+ <executions>
+ <execution>
+ <id>attach-artifact</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>deploy</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>