Explore Strata API with Groovy

Hi
This trick is helpful for those who want to play around with Strata without using Eclipse.
Install maven. Navigate to the example folder. Add this to the pom.xml.

<dependency>    
 <groupId>org.codehaus.groovy</groupId>    
 <artifactId>groovy-all</artifactId>   
 <version>2.4.3</version>
</dependency>

then on the commandline
mvn exec:java -Dexec.mainClass=“groovy.ui.Console”

I found this helpful.
Oyvind

Thanks, I’m sure it will be useful!