class Nexus < Formula desc "Repository manager for binary software components" homepage "https://www.sonatype.org/" url "https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/oss/nexus-2.14.10-01-bundle.tar.gz" version "2.14.10-01" sha256 "d91fcc927ac90248d81ec741527668524388052abd7415548804dcb13a41e208" bottle :unneeded def install rm_f Dir["bin/*.bat"] # Put the sonatype-work directory in the var directory, to persist across version updates inreplace "nexus-#{version}/conf/nexus.properties", "nexus-work=${bundleBasedir}/../sonatype-work/nexus", "nexus-work=#{var}/nexus" libexec.install Dir["nexus-#{version}/*"] bin.install_symlink libexec/"bin/nexus" end plist_options :manual => "nexus start" def plist; <<~EOS Label com.sonatype.nexus ProgramArguments #{opt_bin}/nexus start RunAtLoad EOS end test do output = `#{bin}/nexus status` assert_match "Nexus OSS is", output end end