fixed pom

This commit is contained in:
Luca Frosini 2019-12-05 17:33:32 +01:00
parent 3921648324
commit 8faa1386d2
1 changed files with 4 additions and 13 deletions

17
pom.xml
View File

@ -70,33 +70,24 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-uberjar</id>
<phase>install</phase>
</execution>
<execution>
<id>make-servicearchive</id>
<phase>install</phase>
<phase>package</phase>
</execution>
<execution>
<id>make-uberjar</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>