jshell-plugin
jshell-plugin copied to clipboard
Gradle plugin to explore your code and dependencies with in jshell
When writing to stdout using for instance `System.out.println`, the line is printed as appended to the end of the line, instead of on a new line of its own: ```java...
I've got everything in my project using Java17: ``` % echo $JAVA_HOME /Library/Java/JavaVirtualMachines/amazon-corretto-17.jdk/Contents/Home/ % which java /Library/Java/JavaVirtualMachines/amazon-corretto-17.jdk/Contents/Home/bin/java % which jshell /Library/Java/JavaVirtualMachines/amazon-corretto-17.jdk/Contents/Home/bin/jshell ``` Similarly, my `build.gradle` specifies Java17 in all the...