Hi there,
I am trying to make a super simple example of a Clojure application integrated with Conjur.
I am using the newly available Conjur Java API client available here: https://search.maven.org/artifact/com.cyberark.conjur.api/conjur-api/3.0.1/jar
and I added this line: [com.cyberark.conjur.api/conjur-api “3.0.1”] to my project.clj as it is suggested for “line”
You can find it attached (as .txt)project.txt (345 Bytes).
When I add this dependency and build my “Hello World” application again, I have the following error:
java.lang.NoSuchMethodError: ‘org.slf4j.helpers.FormattingTuple org.slf4j.helpers.MessageFormatter.arrayFormat(java.lang.String, java.lang.Object[])’, compiling:(ring/adapter/jetty.clj:22:3)
Exception in thread “main” java.lang.NoSuchMethodError: ‘org.slf4j.helpers.FormattingTuple org.slf4j.helpers.MessageFormatter.arrayFormat(java.lang.String, java.lang.Object[])’, compiling:(ring/adapter/jetty.clj:22:3)
Full trace attachedtrace.txt (6.2 KB)
Could there be something wrong with slf4j and the conjur api java client?
Many thanks,
JFC