Skip to content

Instantly share code, notes, and snippets.

@pestilence669
Forked from jessitron/gist:8376139
Last active January 11, 2016 23:07
Show Gist options
  • Save pestilence669/f135d6d0bf6ff08d93f8 to your computer and use it in GitHub Desktop.
Save pestilence669/f135d6d0bf6ff08d93f8 to your computer and use it in GitHub Desktop.
scala: print all URLs on classpath
def urlses(cl: ClassLoader): Array[java.net.URL] = cl match {
case null => Array()
case u: java.net.URLClassLoader => u.getURLs() ++ urlses(cl.getParent)
case _ => urlses(cl.getParent)
}
val urls = urlses(getClass.getClassLoader)
println(urls.filterNot(_.toString.contains("ivy")).mkString("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment