mirror of
https://github.com/sbt/sbt.git
synced 2026-08-30 17:54:25 +02:00
The dotty sbt-bridge module assumes that it's going to get a URLClassLoader from which it can extract all of the classpath urls. That doesn't work with the old wrapped classloader because its classpath was empty. As a nasty workaround, I override the getURLs method, which is where it gets the URLs from. After this change the compiler-project/dotty-compiler-plugin test passes.