Skip to content

Instantly share code, notes, and snippets.

@peterschwarz
Last active March 25, 2016 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterschwarz/737f51741fbedfa4ffb9 to your computer and use it in GitHub Desktop.
Save peterschwarz/737f51741fbedfa4ffb9 to your computer and use it in GitHub Desktop.
List current classpath in clojure
(defn current-classpath []
(->> (ClassLoader/getSystemClassLoader) (.getURLs) seq (map #(.getFile %))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment