homebrew-core/Formula/openliberty-microprofile4.rb

49 lines
1.5 KiB
Ruby

class OpenlibertyMicroprofile4 < Formula
desc "Lightweight open framework for Java (Micro Profile 4)"
homepage "https://openliberty.io"
url "https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/release/22.0.0.13/openliberty-microProfile4-22.0.0.13.zip"
sha256 "734b570fee7aeebd5113bed22afd253559b870c2d51853caea9d278f2eed43e4"
license "EPL-1.0"
livecheck do
url "https://openliberty.io/api/builds/data"
regex(/openliberty[._-]v?(\d+(?:\.\d+)+)\.zip/i)
end
bottle do
sha256 cellar: :any_skip_relocation, all: "c27bb53ee66697ab2ce70e770537015686c55ca84db19426d9ff3f2c3b93997a"
end
depends_on "openjdk"
def install
rm_rf Dir["bin/**/*.bat"]
prefix.install_metafiles
libexec.install Dir["*"]
(bin/"openliberty-microprofile4").write_env_script "#{libexec}/bin/server",
Language::Java.overridable_java_home_env
end
def caveats
<<~EOS
The home of Open Liberty Micro Profile 4 is:
#{opt_libexec}
EOS
end
test do
ENV["WLP_USER_DIR"] = testpath
begin
system bin/"openliberty-microprofile4", "start"
assert_predicate testpath/"servers/.pid/defaultServer.pid", :exist?
ensure
system bin/"openliberty-microprofile4", "stop"
end
refute_predicate testpath/"servers/.pid/defaultServer.pid", :exist?
assert_match "<feature>microProfile-4.1</feature>", (testpath/"servers/defaultServer/server.xml").read
end
end