mirror of https://github.com/apache/nifi.git
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:
parent
b4e4f3eed5
commit
7a5d53b8d3
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue