Search Gradle plugins

Version 1.0.3

Created 29 December 2021.

Gradle plugin for PostgreSQL database migrations

Using the plugins DSL:

plugins {
  id("io.github.romanshvets.postgresql-migrations") version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.romanshvets:postgresql-migrations:1.0.3")
  }
}

apply(plugin = "io.github.romanshvets.postgresql-migrations")

Using the plugins DSL:

plugins {
  id "io.github.romanshvets.postgresql-migrations" version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.romanshvets:postgresql-migrations:1.0.3"
  }
}

apply plugin: "io.github.romanshvets.postgresql-migrations"

Learn how to apply plugins to subprojects