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

incubator-nifi git commit: NIFI-142: - Adding javax.mail dependency to address a runtime dependency.

Repository: incubator-nifi
Updated Branches:
  refs/heads/develop 203e83ee0 -> 0125f3da3


NIFI-142:
- Adding javax.mail dependency to address a runtime dependency.

Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/0125f3da
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/0125f3da
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/0125f3da

Branch: refs/heads/develop
Commit: 0125f3da3fd0482d4b79e58d977105e1fc034014
Parents: 203e83e
Author: Matt Gilman <ma...@gmail.com>
Authored: Tue Dec 9 09:52:11 2014 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Tue Dec 9 09:52:11 2014 -0500

----------------------------------------------------------------------
 nar-bundles/framework-bundle/framework/site-to-site/pom.xml | 4 ++++
 nar-bundles/framework-bundle/pom.xml                        | 5 +++++
 2 files changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/0125f3da/nar-bundles/framework-bundle/framework/site-to-site/pom.xml
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/site-to-site/pom.xml b/nar-bundles/framework-bundle/framework/site-to-site/pom.xml
index dcbb136..ce18ec7 100644
--- a/nar-bundles/framework-bundle/framework/site-to-site/pom.xml
+++ b/nar-bundles/framework-bundle/framework/site-to-site/pom.xml
@@ -54,6 +54,10 @@
             <artifactId>jersey-client</artifactId>
         </dependency>
         <dependency>
+            <groupId>javax.mail</groupId>
+            <artifactId>mail</artifactId>
+        </dependency>
+        <dependency>
             <groupId>org.apache.nifi</groupId>
             <artifactId>nifi-web-utils</artifactId>
         </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/0125f3da/nar-bundles/framework-bundle/pom.xml
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/pom.xml b/nar-bundles/framework-bundle/pom.xml
index 6d919bf..cf5b6b6 100644
--- a/nar-bundles/framework-bundle/pom.xml
+++ b/nar-bundles/framework-bundle/pom.xml
@@ -223,6 +223,11 @@
                 <version>${jersey.version}</version>
             </dependency>
             <dependency>
+                <groupId>javax.mail</groupId>
+                <artifactId>mail</artifactId>
+                <version>1.4.7</version>
+            </dependency>
+            <dependency>
                 <groupId>stax</groupId>
                 <artifactId>stax-api</artifactId>
                 <version>1.0.1</version>