Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save HaiNguyen007/795b5e0e92e6cf45b24749fe0c839144 to your computer and use it in GitHub Desktop.

Select an option

Save HaiNguyen007/795b5e0e92e6cf45b24749fe0c839144 to your computer and use it in GitHub Desktop.
Show your classpath within Clojure REPL.
(use 'clojure.pprint)
(import 'java.lang.Thread)
(-> (Thread/currentThread) (.getContextClassLoader) (.getURLs) (seq) (pprint))
@HaiNguyen007
Copy link
Author

You can also use query lein for

the classpath with lein classpath
a dependency tree printout with lein deps :tree

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment