Last active
May 17, 2019 15:47
-
-
Save ssmythe/258ad6eb0ae9076b0d96ba36b72eccb7 to your computer and use it in GitHub Desktop.
jenkins brew /usr/local/opt/jenkins/homebrew.mxcl.jenkins.plist
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>homebrew.mxcl.jenkins</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/libexec/java_home</string> | |
<string>-v</string> | |
<string>1.8</string> | |
<string>--exec</string> | |
<string>java</string> | |
<string>-Dmail.smtp.starttls.enable=true</string> | |
<string>-jar</string> | |
<string>/usr/local/opt/jenkins/libexec/jenkins.war</string> | |
<string>--httpListenAddress=0.0.0.0</string> | |
<string>--httpPort=8080</string> | |
</array> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>PATH</key> | |
<string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string> | |
</dict> | |
<key>RunAtLoad</key> | |
<true/> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment