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:51:36 UTC

[nifi] 03/04: 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 support/nifi-1.16
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 04a40d4e49ea65f16d6c0f9b2ee43ccf40d9ed1e
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 e408349090..82984c6d29 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>