summaryrefslogtreecommitdiffstats
path: root/logserver/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'logserver/pom.xml')
-rw-r--r--logserver/pom.xml26
1 files changed, 8 insertions, 18 deletions
diff --git a/logserver/pom.xml b/logserver/pom.xml
index 68ed459f315..e3ef730bb36 100644
--- a/logserver/pom.xml
+++ b/logserver/pom.xml
@@ -60,30 +60,20 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <configuration>
- <finalName>${project.artifactId}-jar-with-dependencies</finalName>
- <createDependencyReducedPom>false</createDependencyReducedPom>
- <transformers>
- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
- <mainClass>com.yahoo.logserver.Server</mainClass>
- </transformer>
- </transformers>
- </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>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
<configuration>
- <updateReleaseInfo>true</updateReleaseInfo>
+ <mainClass>com.yahoo.logserver.Server</mainClass>
</configuration>
</plugin>
<plugin>