-
-
Save HaiNguyen007/795b5e0e92e6cf45b24749fe0c839144 to your computer and use it in GitHub Desktop.
Show your classpath within Clojure REPL.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (use 'clojure.pprint) | |
| (import 'java.lang.Thread) | |
| (-> (Thread/currentThread) (.getContextClassLoader) (.getURLs) (seq) (pprint)) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can also use query lein for
the classpath with lein classpath
a dependency tree printout with lein deps :tree