Hello, I'm just getting started with Gradle, and really enjoying what I'm seeing so far. However, I've got a question. I'd like to create a target that runs a Groovy script located inside my project. The script imports classes from the project, so script's classpath should include the project's classes. The project is on github here:
http://github.com/tlberglund/midpoint-mountains As it stands, I can build, then run this from the command line to do what I want: groovy -cp build/classes/main/ src/main/groovy/BuildMountain I thought it would be cool to have a "run" target that did the same thing. What's the best way to make this happen? Thanks, Tim
