I am trying to use the Base 64 features found in the Apache Commons Codec package. I use Leiningen and have this in my project.clj :
:dependencies [[org.clojure/clojure "1.2.0"] [commons-codec/commons-codec "1.4"]]
Leiningen successfully finds the appropriate .jar. I cannot let my life determine which class I really need to import. I tried all the options
(ns my-project.core (:import (org.apache.commons.codec.binary Base64)))
but nothing works. What class name should I use for this?
bdesham
source share