Can I get Lein to print the classpath that it uses at "plugin time"?
Don't quote me on this, but I believe that with e.g. lein repl there will be 3 classpaths:
• a jvm and classpath just for the Lein self-install .jar
◦ persistent
• a jvm and classpath with plugins in it
◦ short-lived
◦ this is the one I want!
• a jvm and classpath with one's actual, non-plugin dependencies
thanks! sounds like it would work
I think it should be possible to write a simple lein plugin which has eval-in-leiningen true in the project.clj, and just print (System/getProperties "java.class.path") in the entry point