homebrew-core/Formula/jenkins.rb
asaph 2a01ba0a8d jenkins 1.594
Closes Homebrew/homebrew#35001.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-15 19:00:47 +00:00

49 lines
1.3 KiB
Ruby

require "formula"
class Jenkins < Formula
homepage "https://jenkins-ci.org"
url "http://mirrors.jenkins-ci.org/war/1.594/jenkins.war"
sha1 "8853944c337e73143e1433b3945ccda086f5882a"
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
bin.write_jar_script libexec/"jenkins.war", "jenkins"
end
plist_options :manual => "jenkins"
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