org.blinkmob.flywayrename
Owner: Timothy Ecklund
A plugin to append a timestamp to your flyway sql scripts
https://github.com/gnomff/FlywayRename
Sources: https://github.com/gnomff/FlywayRename
Version 1.0.0 (latest)
1.0.0
Created 25 July 2017.
A plugin to append a timestamp to your flyway sql scripts
Using the plugins DSL:
plugins {
id("org.blinkmob.flywayrename") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.blinkmob:flywayRename:1.0.0")
}
}
apply(plugin = "org.blinkmob.flywayrename")
Using the plugins DSL:
plugins {
id "org.blinkmob.flywayrename" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.blinkmob:flywayRename:1.0.0"
}
}
apply plugin: "org.blinkmob.flywayrename"