homebrew-core/Formula/jenkins.rb
asaph 256d99e00b jenkins 1.560
Closes Homebrew/homebrew#28580.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-21 17:32:24 -05:00

48 lines
1.3 KiB
Ruby

require 'formula'
class Jenkins < Formula
homepage 'http://jenkins-ci.org'
url 'http://mirrors.jenkins-ci.org/war/1.560/jenkins.war'
sha1 '2337cdf62e6dfe3a3d54c66ed02783f2d4fecb3c'
head 'https://github.com/jenkinsci/jenkins.git'
def install
if build.head?
system "mvn clean install -pl war -am -DskipTests"
libexec.install 'war/target/jenkins.war', '.'
else
libexec.install "jenkins.war"
end
end
plist_options :manual => "java -jar #{HOMEBREW_PREFIX}/opt/jenkins/libexec/jenkins.war"
def plist; <<-EOS.undent
<?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>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/java</string>
<string>-Dmail.smtp.starttls.enable=true</string>
<string>-jar</string>
<string>#{opt_libexec}/jenkins.war</string>
<string>--httpListenAddress=127.0.0.1</string>
<string>--httpPort=8080</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
def caveats; <<-EOS.undent
Note: When using launchctl the port will be 8080.
EOS
end
end