This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env groovy | |
package devops | |
Authenticator.setDefault(new Authenticator() { | |
protected PasswordAuthentication getPasswordAuthentication() { | |
return new PasswordAuthentication("list", "**********".toCharArray()); | |
} | |
}) | |
servers = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Put the plist in /Library/LaunchAgents/hudson.ci.plist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
REM | |
REM Automatic Grails Version Selector v1.0 | |
REM | |
REM Description: | |
REM Automatically selects version of Grails to run based either | |
REM on context, environment variable, or command line argument. | |
REM | |
REM Copyright © 2010, Componentix (http://www.componentix.com/) |