Search Gradle plugins

pl.codelabs.flywayJooq

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

Version 1.2.0

1.2.0

Created 26 February 2017.

No version description available.

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 .