You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jo...@apache.org on 2014/12/15 11:53:19 UTC

[2/2] incubator-nifi git commit: NIFI-169 Fixed classpath issue affecting startup

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-169
Commit: 675ea6611c3e941df05f88dacb6c691bd9712206
Parents: dd57a33
Author: joewitt <jo...@apache.org>
Authored: Mon Dec 15 05:53:03 2014 -0500
Committer: joewitt <jo...@apache.org>
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>