summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2018-07-25 12:45:46 +0200
committerGitHub <noreply@github.com>2018-07-25 12:45:46 +0200
commit3008ac3796b02879683cf5794cd1916308be2f61 (patch)
tree83f77d8ae66495b37174eefe32d1b0c4d0f29448
parent51784648ba35a2b6765ee755d0cbf18180372dd9 (diff)
parentd8b18cc19a94585eca1144f3dbde3ebe92e3f322 (diff)
Merge pull request #6464 from vespa-engine/gjoranv/attach-bundle
Use new feature in bundle-plugin to attach bundle to artifact.
-rw-r--r--docker-api/pom.xml26
1 files changed, 3 insertions, 23 deletions
diff --git a/docker-api/pom.xml b/docker-api/pom.xml
index 6118865a6e0..87761a17f70 100644
--- a/docker-api/pom.xml
+++ b/docker-api/pom.xml
@@ -128,31 +128,11 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
+ <configuration>
+ <attachBundleToArtifact>true</attachBundleToArtifact>
+ </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}-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>
</plugin>