3dccb94725
Closes Homebrew/homebrew#26999. Signed-off-by: Brett Koonce <koonce@gmail.com>
48 lines
1.3 KiB
Ruby
48 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Jenkins < Formula
|
|
homepage 'http://jenkins-ci.org'
|
|
url 'http://mirrors.jenkins-ci.org/war/1.552/jenkins.war'
|
|
sha1 '104e33a73c50388a6f74153d0ec1dcdf6137e368'
|
|
|
|
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_prefix}/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
|