Search Gradle plugins

Version 1.0.0

Created 09 June 2021.

Advanced DAtabase Migration to migrate database schema

Using the plugins DSL:

plugins {
  id("ch.ergon.adam") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.ergon.adam:gradle-plugin:1.0.0")
  }
}

apply(plugin = "ch.ergon.adam")

Using the plugins DSL:

plugins {
  id "ch.ergon.adam" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.ergon.adam:gradle-plugin:1.0.0"
  }
}

apply plugin: "ch.ergon.adam"

Learn how to apply plugins to subprojects