I'd like to use JShell to launch a Class which is contained in a Maven repository:
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
<version>2.2.16.Final</version>
</dependency>
Looking at the docs, I can see you can specify the classpath using the following option:
jshell --class-path=
That however implies that you have the library locally. I wonder if it's possible to just specify the Maven GAV or an HTTP URL to pick up the Class from that dependency. Any idea ? Thanks