summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-08-24 16:12:57 +0200
committergjoranv <gv@oath.com>2018-08-24 16:12:57 +0200
commitcc09dbd9ff25fead72c28cd4d7ada6f26d9bdc20 (patch)
tree2a4c3bbee6ccb256496a04e0cc0e0ecf9f6ab731 /controller-api
parentd5577c068308f14733bc1e5f87eabc36e3a0d254 (diff)
Use bundle-plugin to attach bundle jar.
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/pom.xml28
1 files changed, 2 insertions, 26 deletions
diff --git a/controller-api/pom.xml b/controller-api/pom.xml
index 1607d6bea0e..7d06e2facbd 100644
--- a/controller-api/pom.xml
+++ b/controller-api/pom.xml
@@ -86,39 +86,15 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
<groupId>com.yahoo.vespa</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
+ <attachBundleArtifact>true</attachBundleArtifact>
+ <bundleClassifierName>deploy</bundleClassifierName>
<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>
</project>