aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/nexus.rb
blob: ac3cbe5c086b772cd1f4715adcde904cf52a7264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
require 'formula'

class Nexus < Formula
  homepage 'http://www.sonatype.org/'
  url 'http://download.sonatype.com/nexus/oss/nexus-2.5.0-04-bundle.tar.gz'
  version '2.5.0-04'
  sha1 'd6f438f25b08346f7590344c4a4175a8e547c7cb'

  # Put the sonatype-work directory in the var directory, to persist across version updates
  def patches
    DATA
  end

  def install
    rm_f Dir['bin/*.bat']
    libexec.install Dir["nexus-2.5.0-04/*"]
    bin.install_symlink libexec/'bin/nexus'
  end

  plist_options :manual => "#{HOMEBREW_PREFIX}/opt/nexus/libexec/bin/nexus { console | start | stop | restart | status | dump }"

  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>com.sonatype.nexus</string>
        <key>ProgramArguments</key>
        <array>
          <string>/usr/local/opt/nexus/bin/nexus</string>
          <string>start</string>
        </array>
        <key>RunAtLoad</key>
      <true/>
      </dict>
    </plist>
    EOS
  end

  def caveats; <<-EOS.undent
    If you are upgrading nexus for the first time, and old version is less than 2.3.1, then
    you will need to copy the sonatype-work directory from:
      #{HOMEBREW_PREFIX}/Cellar/#{name}/<old version>/
    to
      #{var}
    EOS
  end
end

__END__
diff --git a/nexus-2.5.0-04/conf/nexus.properties b/nexus-2.5.0-04/conf/nexus.properties
index df89251..23b536b 100644
--- a/nexus-2.5.0-04/conf/nexus.properties
+++ b/nexus-2.5.0-04/conf/nexus.properties
@@ -22,5 +22,5 @@ nexus-webapp=${bundleBasedir}/nexus
 nexus-webapp-context-path=/nexus

 # Nexus section
-nexus-work=${bundleBasedir}/../sonatype-work/nexus
+nexus-work=HOMEBREW_PREFIX/var/nexus
 runtime=${bundleBasedir}/nexus/WEB-INF