r0man / oauth-clj

Clojure OAuth library
95 stars 27 forks source link

oauth-clj 0.1.9 on Clojars didn't specify inflections as dependency, results in error #15

Closed wolf0403 closed 10 years ago

wolf0403 commented 10 years ago

Error when starting project using "lein ring server-headless"

Exception in thread "main" java.lang.IllegalAccessError: transform-keys does not exist
    at clojure.core$refer.doInvoke(core.clj:3849)
    at clojure.lang.RestFn.applyTo(RestFn.java:139)
    at clojure.core$apply.invoke(core.clj:619)
    at clojure.core$load_lib.doInvoke(core.clj:5394)
    at clojure.lang.RestFn.applyTo(RestFn.java:142)
    at clojure.core$apply.invoke(core.clj:619)
    at clojure.core$load_libs.doInvoke(core.clj:5413)
    at clojure.lang.RestFn.applyTo(RestFn.java:137)
    at clojure.core$apply.invoke(core.clj:619)
    at clojure.core$require.doInvoke(core.clj:5496)
    at clojure.lang.RestFn.invoke(RestFn.java:551)
    at oauth.v1$eval10351$loading__4920__auto____10352.invoke(v1.clj:1)
    at oauth.v1$eval10351.invoke(v1.clj:1)

Using 0.1.10-SNAPSHOT from github worked.

r0man commented 10 years ago

Strange. I bumped the version again. Can you confirm that it works now

wolf0403 commented 10 years ago

Thanks. Seems 0.1.10 loads inflections correctly now. Also I just discovered that I had sandbar 0.4 in my project which loads inflections 0.6.6 instead of 0.9.5 required by oauth-clj so this may not be problem related to oauth-clj package. Sorry and thanks!