NIFI-1747 add maven-jar-plugin to create jar as part of the existing nifi-web-api build process

This closes #340.

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
Jeremy Dyer 2016-04-09 15:24:54 -04:00 committed by Aldrin Piri
parent b4e4f3eed5
commit 7a5d53b8d3
1 changed files with 13 additions and 0 deletions

View File

@ -34,6 +34,19 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>create-jar</id>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>