pl.codelabs.flywayJooq
Owner: Wojtek Strzalka
Gradle plugin that improves integration of jOOQ and Flyway plugins by improving Gradle uptodate check on jOOQ task adding check of currently applied Flyway scripts.
https://github.com/wstrzalka/gradle-flyway-jooq-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("pl.codelabs.flywayJooq") version "1.2.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pl.codelabs:gradle-flyway-jooq-plugin:1.2.0") } } apply(plugin = "pl.codelabs.flywayJooq")
- Applying plugins to all subprojects .