ptuomola commented on a change in pull request #1597:
URL: https://github.com/apache/fineract/pull/1597#discussion_r579598849
##########
File path: fineract-provider/dependencies.gradle
##########
@@ -80,7 +80,8 @@ dependencies {
'org.webjars:webjars-locator-core',
'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.2.1',
- 'com.squareup.retrofit2:converter-gson'
+ 'com.squareup.retrofit2:converter-gson',
+ 'com.sun.activation:jakarta.activation:1.2.2'
Review comment:
That's not quite what I meant. See my commit
da73689bf498905752c592cdabf1e24300142448 as an example - or the patch below.
Works at least for me.
diff --git a/fineract-provider/dependencies.gradle
b/fineract-provider/dependencies.gradle
index 4024ce12a..7a83a941c 100644
--- a/fineract-provider/dependencies.gradle
+++ b/fineract-provider/dependencies.gradle
@@ -68,9 +68,6 @@ dependencies {
'com.github.spullara.mustache.java:compiler',
'com.jayway.jsonpath:json-path',
- // JAX-B dependencies for JDK 9+
- 'jakarta.xml.bind:jakarta.xml.bind-api',
-
'org.dom4j:dom4j',
'javax.cache:cache-api',
@@ -83,6 +80,9 @@ dependencies {
'com.squareup.retrofit2:converter-gson',
'com.sun.activation:jakarta.activation:1.2.2'
)
+ implementation ('jakarta.xml.bind:jakarta.xml.bind-api') {
+ exclude group: 'jakarta.activation'
+ }
implementation ('org.apache.activemq:activemq-broker') {
exclude group: 'org.apache.geronimo.specs'
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]