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 2022/05/12 19:47:08 UTC

[nifi] branch main updated: NIFI-10020 This closes #6039. Corrected ClassNotFoundException in EmailNotificationService

This is an automated email from the ASF dual-hosted git repository.

joewitt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 7cdbde1eba NIFI-10020 This closes #6039. Corrected ClassNotFoundException in EmailNotificationService
7cdbde1eba is described below

commit 7cdbde1eba924b0c63a02ad81e86ab1062d938a2
Author: exceptionfactory <ex...@apache.org>
AuthorDate: Thu May 12 13:12:08 2022 -0500

    NIFI-10020 This closes #6039. Corrected ClassNotFoundException in EmailNotificationService
    
    - Added activation-api runtime dependency to nifi-bootstrap
    
    Signed-off-by: Joe Witt <jo...@apache.org>
---
 nifi-bootstrap/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/nifi-bootstrap/pom.xml b/nifi-bootstrap/pom.xml
index cb1214f7f3..2beafd5ac5 100644
--- a/nifi-bootstrap/pom.xml
+++ b/nifi-bootstrap/pom.xml
@@ -72,6 +72,12 @@ language governing permissions and limitations under the License. -->
             <artifactId>jakarta.mail</artifactId>
             <version>2.0.1</version>
         </dependency>
+        <dependency>
+            <groupId>jakarta.activation</groupId>
+            <artifactId>jakarta.activation-api</artifactId>
+            <version>2.0.1</version>
+            <scope>runtime</scope>
+        </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
             <artifactId>nifi-expression-language</artifactId>