From 15a02cb9fc1ca57d5a3eeb836386aac50dd14849 Mon Sep 17 00:00:00 2001 From: Dan Date: Wed, 11 Oct 2017 13:23:51 -0400 Subject: [PATCH] Add flyway (#1761) * Add flyway * flyway: remove default hash mode * persist conf, jars, and sql directories * fix typo --- flyway.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 flyway.json diff --git a/flyway.json b/flyway.json new file mode 100644 index 0000000000..13e32bba18 --- /dev/null +++ b/flyway.json @@ -0,0 +1,22 @@ +{ + "homepage": "https://flywaydb.org/", + "license": "https://github.com/flyway/flyway/blob/master/LICENSE", + "version": "4.2.0", + "url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/4.2.0/flyway-commandline-4.2.0-windows-x64.zip", + "extract_dir": "flyway-4.2.0", + "bin": "flyway.cmd", + "hash": "sha1:2077d930e8f06aeb5714a964b2c2348308cd54ad", + "checkver": "Get Started with Flyway\\s+([\\d.]+)", + "autoupdate": { + "url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/$version/flyway-commandline-$version-windows-x64.zip", + "extract_dir": "flyway-$version", + "hash": { + "url": "$url.sha1" + } + }, + "persist": [ + "conf", + "sql", + "jars" + ] +}