Search Gradle plugins

Version 1.1.2 (latest)

Created 08 December 2023.

Advanced DAtabase Migration to migrate database schema

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "ch.ergon.adam"

Learn how to apply plugins to subprojects