summaryrefslogtreecommitdiffstats
path: root/configserver/pom.xml
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-27 13:15:51 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-30 18:07:43 +0200
commitac559d6b0dffc990da4279fb8369bc26f70f4676 (patch)
treef9a6cfa1cdad23865a44b2e552e33632408c4e34 /configserver/pom.xml
parent39482961a1d946e24d5be22da8562ff0f3aacd03 (diff)
simplify jar-plugin configuration
Diffstat (limited to 'configserver/pom.xml')
-rw-r--r--configserver/pom.xml22
1 files changed, 7 insertions, 15 deletions
diff --git a/configserver/pom.xml b/configserver/pom.xml
index c98cc7e7b9c..0351000b760 100644
--- a/configserver/pom.xml
+++ b/configserver/pom.xml
@@ -206,21 +206,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <archive>
- <manifest>
- <mainClass>com.yahoo.vespa.config.server.Server</mainClass>
- </manifest>
- </archive>
- </configuration>
- </execution>
- </executions>
+ <configuration>
+ <archive>
+ <manifest>
+ <mainClass>com.yahoo.vespa.config.server.Server</mainClass>
+ </manifest>
+ </archive>
+ </configuration>
</plugin>
<!-- For creating config classes for tests, main config classes created by bundle plugin -->