Skip to content

Commit

Permalink
Fixed: Fix problems with Eclipse about multi module dependencies
Browse files Browse the repository at this point in the history
(OFBIZ-12963)

Correction of java problems signaled by Eclipse due to the presence of
the same classes in different module

Thanks: Gil Portenseigne for reporting and providing the patch.
  • Loading branch information
MkLeila committed Mar 26, 2024
1 parent 62ebc55 commit ced48a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ dependencies {
implementation 'org.jdom:jdom:1.1.3' // don't upgrade above 1.1.3, makes a lot of not obvious and useless complications, see last commits of OFBIZ-12092 for more
implementation 'com.google.re2j:re2j:1.7'
implementation 'xerces:xercesImpl:2.12.2'
implementation 'org.mustangproject:library:2.8.0' // 2.10.0 did not work, cf. OFBIZ-12920 (https://github.com/apache/ofbiz-framework/pull/712#issuecomment-1968960963)
implementation('org.mustangproject:library:2.8.0') { // 2.10.0 did not work, cf. OFBIZ-12920 (https://github.com/apache/ofbiz-framework/pull/712#issuecomment-1968960963)
exclude group: 'pull-parser', module: 'pull-parser'
exclude group: 'xpp3', module: 'xpp3'
}

testImplementation 'org.hamcrest:hamcrest-library:2.2' // Enable junit4 to not depend on hamcrest-1.3
testImplementation 'org.mockito:mockito-core:5.10.0'
Expand Down

0 comments on commit ced48a6

Please sign in to comment.