You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reverted: Improved: Have library dependencies moved to a dependencies.gradle file (OFBIZ-10924)
This reverts commit 6916e77.
I thought Gradle dependencies order had no importance.
It seems though it depends on OS.
So I revert a last time and forget this idea of alphabetically ordering
the dependencies.
implementation 'org.apache.commons:commons-imaging:1.0-alpha3'// Alpha but OK, "Imaging was working and was used by a number of projects in production even before reaching its initial release as an Apache Commons component." Since 1.0.0-alpha4 (note the use of semver) the API has changed. Better wait an "official release" to rewrite OFBiz code...
implementation 'org.apache.logging.log4j:log4j-api:2.24.2'// the API of log4j 2
61
54
implementation 'org.apache.logging.log4j:log4j-core:2.24.2'// Somehow needed by Buildbot to compile OFBizDynamicThresholdFilter.java
62
-
implementation 'org.apache.pdfbox:pdfbox:2.0.32'// 3.0.1 does not compile
63
55
implementation 'org.apache.poi:poi:5.3.0'
56
+
implementation 'org.apache.pdfbox:pdfbox:2.0.32'// 3.0.1 does not compile
64
57
implementation 'org.apache.shiro:shiro-core:1.13.0'// Got "Exception in thread "main" java.lang.UnsupportedOperationException: Cannot create a hash with the given algorithm: argon2" with 2.0.2 in integration tests
implementation 'org.apache.xmlgraphics:fop:2.3'// NOTE: since 2.4 dependencies are messed up. See https://github.com/moqui/moqui-fop/blob/master/build.gradle
implementation 'org.freemarker:freemarker:2.3.34'// Remember to change the version number in FreeMarkerWorker class when upgrading. See OFBIZ-10019 if >= 2.4
80
-
implementation 'org.jdom:jdom2:2.0.6.1'
81
-
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)
0 commit comments