Repository: nifi Updated Branches: refs/heads/0.x c81248f26 -> 0a76b88c0 refs/heads/master b4e4f3eed -> 7a5d53b8d
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 <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/7a5d53b8 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/7a5d53b8 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/7a5d53b8 Branch: refs/heads/master Commit: 7a5d53b8d394a7d446ff84be35dd1a39253f25bc Parents: b4e4f3e Author: Jeremy Dyer <[email protected]> Authored: Sat Apr 9 15:24:54 2016 -0400 Committer: Aldrin Piri <[email protected]> Committed: Sun May 8 14:31:25 2016 -0400 ---------------------------------------------------------------------- .../nifi-framework/nifi-web/nifi-web-api/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/7a5d53b8/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/pom.xml b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/pom.xml index 2836641..937f368 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/pom.xml +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/pom.xml @@ -36,6 +36,19 @@ <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> <configuration> <argLine>-Xms512m -Xmx512m</argLine>
