Classpath in Groovy


In [2]:
println "The Groovy working folder is :"
println java.nio.file.Paths.get(".").toAbsolutePath().normalize().toString();
println "BeakerXClasspathTest.jar exists in this folder"
OutputCell.HIDDEN


The Groovy working folder is :
/home/codete/workspaceBeakerx/beakerx/demoFiles
BeakerXClasspathTest.jar exists in this folder

In [3]:
BeakerXClasspathTest t = new BeakerXClasspathTest();
println com.beaker.BeakerXClasspathTest.staticTest;
println t.getObjectTest();
OutputCell.HIDDEN


static_123
object_123

In [ ]: