Skip to content

Instantly share code, notes, and snippets.

@scotthaleen
Created September 15, 2016 20:46
Show Gist options
  • Save scotthaleen/1eaadcd0d7c545bbb637c456f0daf688 to your computer and use it in GitHub Desktop.
Save scotthaleen/1eaadcd0d7c545bbb637c456f0daf688 to your computer and use it in GitHub Desktop.
Get a list of what is on the classpath
(->> (ClassLoader/getSystemClassLoader)
.getURLs
(map #(.getFile %)))
;; Add a filter
(->> (ClassLoader/getSystemClassLoader)
.getURLs
(map #(.getFile %))
(filter #(clojure.string/includes? % "resources")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment