Repository: nifi Updated Branches: refs/heads/master d78c7faf1 -> 2b0a0c059
NIFI-614 added necessary pom element to skip javadocs/sources for nar pom itself in jms proc nar. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/2b0a0c05 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/2b0a0c05 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/2b0a0c05 Branch: refs/heads/master Commit: 2b0a0c0597c75b199f793acd7f8419f88a387b16 Parents: d78c7fa Author: joewitt <[email protected]> Authored: Tue Mar 15 21:40:08 2016 -0400 Committer: joewitt <[email protected]> Committed: Tue Mar 15 21:40:08 2016 -0400 ---------------------------------------------------------------------- nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors-nar/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/2b0a0c05/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors-nar/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors-nar/pom.xml b/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors-nar/pom.xml index 72fec4c..c28fac2 100644 --- a/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors-nar/pom.xml +++ b/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors-nar/pom.xml @@ -22,6 +22,10 @@ <artifactId>nifi-jms-processors-nar</artifactId> <packaging>nar</packaging> <description>NiFi NAR for interacting with JMS-based messaging systems</description> + <properties> + <maven.javadoc.skip>true</maven.javadoc.skip> + <source.skip>true</source.skip> + </properties> <dependencies> <dependency> <groupId>org.apache.nifi</groupId>
