summaryrefslogtreecommitdiffstats
path: root/vespaclient-java/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient-java/pom.xml')
-rw-r--r--vespaclient-java/pom.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/vespaclient-java/pom.xml b/vespaclient-java/pom.xml
index 99ca84ccce0..a31d3c834dd 100644
--- a/vespaclient-java/pom.xml
+++ b/vespaclient-java/pom.xml
@@ -11,6 +11,7 @@
</parent>
<artifactId>vespaclient-java</artifactId>
<version>8-SNAPSHOT</version>
+ <packaging>jar</packaging>
<dependencies>
<dependency>
<!-- Due to com.yahoo.search.query.profile.DumpTool ... -->
@@ -94,17 +95,16 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <configuration>
- <finalName>${project.artifactId}-jar-with-dependencies</finalName>
- <createDependencyReducedPom>false</createDependencyReducedPom>
- </configuration>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration><skip>true</skip></configuration>
+ </plugin>
+ <plugin>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>bundle-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
+ <goals><goal>assemble-fat-jar</goal></goals>
</execution>
</executions>
</plugin>