Skip to content

Instantly share code, notes, and snippets.

@bc-luke
Forked from jessitron/gist:8376139
Last active May 18, 2020 03:33
Show Gist options
  • Save bc-luke/6424a446783e174ee66b6975c86ab051 to your computer and use it in GitHub Desktop.
Save bc-luke/6424a446783e174ee66b6975c86ab051 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