You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by pt...@apache.org on 2021/12/04 00:34:32 UTC

[fineract] branch develop updated: FINERACT-1448: Fix sending emails

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

ptuomola pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 6eb7284  FINERACT-1448: Fix sending emails
6eb7284 is described below

commit 6eb728455f5ae58e6988db14e1c584ef8c39ca57
Author: Petri Tuomola <pe...@tuomola.org>
AuthorDate: Fri Dec 3 21:37:16 2021 +0800

    FINERACT-1448: Fix sending emails
---
 fineract-provider/dependencies.gradle | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/fineract-provider/dependencies.gradle b/fineract-provider/dependencies.gradle
index e511868..00061ed 100644
--- a/fineract-provider/dependencies.gradle
+++ b/fineract-provider/dependencies.gradle
@@ -69,15 +69,14 @@ dependencies {
 
             'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.4.0',
             'com.squareup.retrofit2:converter-gson',
+            'org.apache.commons:commons-email'
             )
 
     implementation('org.springframework.boot:spring-boot-starter-jersey') {
         exclude group: 'org.glassfish.hk2.external', module: 'aopalliance-repackaged'
         exclude group: 'org.glassfish.hk2', module: 'hk2-runlevel'
         exclude group: 'org.hibernate.validator', module: 'hibernate-validator'
-    }
-    implementation('org.apache.commons:commons-email') {
-        exclude group: 'javax.activation'
+        exclude group: 'jakarta.activation', module: 'jakarta.activation-api'
     }
     implementation('org.dom4j:dom4j') {
         exclude group: 'javax.xml.bind'