NIFI-169 Fixed classpath issue affecting startup
Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/675ea661 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/675ea661 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/675ea661 Branch: refs/heads/nifi-27 Commit: 675ea6611c3e941df05f88dacb6c691bd9712206 Parents: dd57a33 Author: joewitt <[email protected]> Authored: Mon Dec 15 05:53:03 2014 -0500 Committer: joewitt <[email protected]> Committed: Mon Dec 15 05:53:03 2014 -0500 ---------------------------------------------------------------------- nar-bundles/framework-bundle/framework/runtime/pom.xml | 2 ++ nar-bundles/framework-bundle/framework/web/nifi-jetty/pom.xml | 5 +++++ 2 files changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/675ea661/nar-bundles/framework-bundle/framework/runtime/pom.xml ---------------------------------------------------------------------- diff --git a/nar-bundles/framework-bundle/framework/runtime/pom.xml b/nar-bundles/framework-bundle/framework/runtime/pom.xml index e193729..defa994 100644 --- a/nar-bundles/framework-bundle/framework/runtime/pom.xml +++ b/nar-bundles/framework-bundle/framework/runtime/pom.xml @@ -27,10 +27,12 @@ <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-nar</artifactId> + <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-properties</artifactId> + <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/675ea661/nar-bundles/framework-bundle/framework/web/nifi-jetty/pom.xml ---------------------------------------------------------------------- diff --git a/nar-bundles/framework-bundle/framework/web/nifi-jetty/pom.xml b/nar-bundles/framework-bundle/framework/web/nifi-jetty/pom.xml index 3cdeb07..f896479 100644 --- a/nar-bundles/framework-bundle/framework/web/nifi-jetty/pom.xml +++ b/nar-bundles/framework-bundle/framework/web/nifi-jetty/pom.xml @@ -42,6 +42,11 @@ </dependency> <dependency> <groupId>org.apache.nifi</groupId> + <artifactId>nifi-properties</artifactId> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.nifi</groupId> <artifactId>nifi-security</artifactId> <scope>compile</scope> </dependency>
