homebrew-core/Formula/flyway.rb
Thierry Moisan a17d0462da flyway 6.0.1
Closes #43884.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-09-05 09:44:26 +02:00

20 lines
564 B
Ruby

class Flyway < Formula
desc "Database version control to control migrations"
homepage "https://flywaydb.org/"
url "https://search.maven.org/remotecontent?filepath=org/flywaydb/flyway-commandline/6.0.1/flyway-commandline-6.0.1.tar.gz"
sha256 "30661fa5e0809b97d88ecab870a06a0c6869b340fa4f2a34f0fa3ed5375c66fd"
bottle :unneeded
depends_on :java
def install
rm Dir["*.cmd"]
libexec.install Dir["*"]
bin.install_symlink Dir["#{libexec}/flyway"]
end
test do
system "#{bin}/flyway", "-url=jdbc:h2:mem:flywaydb", "validate"
end
end