homebrew-core/Formula/groovy.rb
Marko Schulz 3998494378
groovy 2.5.6
Closes #36950.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-02-13 19:36:15 +08:00

32 lines
898 B
Ruby

class Groovy < Formula
desc "Java-based scripting language"
homepage "http://www.groovy-lang.org"
url "https://dl.bintray.com/groovy/maven/apache-groovy-binary-2.5.6.zip"
sha256 "b64d0807d85857cb9d7a2137c6d5d828890598597ad0fd149faac20198ed8e92"
bottle :unneeded
# Groovy 2.5 requires JDK8+ to build and JDK7 is the minimum version of the JRE that we support.
depends_on :java => "1.7+"
conflicts_with "groovysdk", :because => "both install the same binaries"
def install
# Don't need Windows files.
rm_f Dir["bin/*.bat"]
libexec.install "bin", "conf", "lib"
bin.install_symlink Dir["#{libexec}/bin/*"] - ["#{libexec}/bin/groovy.ico"]
end
def caveats
<<~EOS
You should set GROOVY_HOME:
export GROOVY_HOME=#{opt_libexec}
EOS
end
test do
system "#{bin}/grape", "install", "org.activiti", "activiti-engine", "5.16.4"
end
end