In JShell, how to import classpath from a Maven project
I have a local Maven project under development. How can I launch jshell with the project class path with all the dependencies, so that I can test project or dependency classes inside JShell. You can use the jshell-maven-plugin: mvn com.github.johnpoth:jshell-maven-plugin:1.1:run which will fire up a JShell session with your project's runtime path. If you want to include your test dependencies just add -DtestClasspath to the command. Source code: https://github.com/johnpoth/jshell-maven-plugin ; contributions are welcome :) full disclaimer: I wrote the plugin. Enjoy! Jianwu Chen I wrote a