summaryrefslogtreecommitdiffstats
path: root/vespa-athenz/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-01-15 21:10:28 +0100
committerBjørn Christian Seime <bjorncs@oath.com>2018-01-15 21:11:38 +0100
commit619257a67d2aa8157244e660ecbb34ae99995919 (patch)
tree825094721ecf5bbc05333338345020f15e4a8019 /vespa-athenz/pom.xml
parenta85df3253bfc0d6374480653ca3dcea4f5ad60fc (diff)
Install artifact with deploy classifier to repository
Diffstat (limited to 'vespa-athenz/pom.xml')
-rw-r--r--vespa-athenz/pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/vespa-athenz/pom.xml b/vespa-athenz/pom.xml
index cf5cb4d1be6..a095b723c35 100644
--- a/vespa-athenz/pom.xml
+++ b/vespa-athenz/pom.xml
@@ -99,6 +99,31 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
+ <configuration>
+ <useCommonAssemblyIds>false</useCommonAssemblyIds>
+ </configuration>
+ </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}-deploy.jar</file>
+ <type>jar</type>
+ <classifier>deploy</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
</plugins>
</build>