Search Gradle plugins

Version 0.3.0

Created 27 September 2023.

Performs build-time class path scanning.

Using the plugins DSL:

plugins {
  id("de.unentscheidbar.migratedb") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.unentscheidbar:migratedb-plugin:0.3.0")
  }
}

apply(plugin = "de.unentscheidbar.migratedb")

Using the plugins DSL:

plugins {
  id "de.unentscheidbar.migratedb" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.unentscheidbar:migratedb-plugin:0.3.0"
  }
}

apply plugin: "de.unentscheidbar.migratedb"

Learn how to apply plugins to subprojects