There is some incompatibility with Junit?
Friday, April 5, 2024 at 06:43pmMy tests were working fine, until I installed any version of implementation group: 'com.silanis.esl', name: 'sdk', version: '11.28'
java.lang.IllegalStateException at DefaultCacheAwareContextLoaderDelegate.java:132
Caused by: java.lang.IllegalArgumentException at Assert.java:702
Reply to: There is some incompatibility with Junit?
Monday, April 8, 2024 at 11:42amHi Carlos,
Thanks for your post and the background information! Few things I noticed from your description:
(1)11.56 is the latest SDK version as per the maven reporsitory page here
(2)You can start with specifying the classifier 'jar-with-dependencies', this is the fat jar with all the dependencies:
dependencies { implementation 'com.silanis.esl:sdk:11.56:jar-with-dependencies' }
If there's any conflict between your local dependencies and the fat jar dependencies, you can consider to use the thin sdk jar, and include the dependencies yourself, you can refer to the POM file here for the SDK dependencies.
Duo