com.radioafricagroup.plugins.flyway
Owner:
Clive Makamara
Master branch of flyway
https://github.com/Radioafricagroup/flyway
Sources: <uri to project source repository>
Add this plugin to your build using the plugins DSL:
plugins {
id("com.radioafricagroup.plugins.flyway") version "0.6.7"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.radioafricagroup.plugins.flyway:com.radioafricagroup.plugins.flyway.gradle.plugin:0.6.7") }
It can then be applied in the precompiled script plugin:plugins { id("com.radioafricagroup.plugins.flyway") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.radioafricagroup.plugins.flyway:com.radioafricagroup.plugins.flyway.gradle.plugin:0.6.7") } } apply(plugin = "com.radioafricagroup.plugins.flyway")
- Applying plugins to all subprojects .