Accessing Hudson Script Console from the command line
Pretty self explanitory this one.
As described here: http://wiki.hudson-ci.org/display/HUDSON/Hudson+Script+Console you can access the Groovy script console from the Hudson web i开发者_StackOverflow社区nterface. I want to be able to access this from a shell so I can execute Groovy scripts from a terminal etc...
Any ideas?
Download http://server/jnlpJars/hudson-cli.jar
Use java -jar hudson-cli.jar -s http://server:8080/ groovysh
for interactive groovy, java -jar hudson-cli.jar -s http://server:8080/ groovy
to run a script.
精彩评论