Search Gradle plugins

Version 0.6.7 (latest)

Created 17 May 2018.

Master branch of flyway

Using the plugins DSL:

plugins {
  id("com.radioafricagroup.plugins.flyway") version "0.6.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.radioafricagroup.plugins:flway-rag:0.6.7")
  }
}

apply(plugin = "com.radioafricagroup.plugins.flyway")

Using the plugins DSL:

plugins {
  id "com.radioafricagroup.plugins.flyway" version "0.6.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.radioafricagroup.plugins:flway-rag:0.6.7"
  }
}

apply plugin: "com.radioafricagroup.plugins.flyway"

Learn how to apply plugins to subprojects