Search Gradle plugins

Version 0.1.6 (latest)

Created 01 November 2023.

Migration tool for Kotlin Simple ORM

Using the plugins DSL:

plugins {
  id("io.tcds.orm.migrations") version "0.1.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.tcds.orm:migrations:0.1.6")
  }
}

apply(plugin = "io.tcds.orm.migrations")

Using the plugins DSL:

plugins {
  id "io.tcds.orm.migrations" version "0.1.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.tcds.orm:migrations:0.1.6"
  }
}

apply plugin: "io.tcds.orm.migrations"

Learn how to apply plugins to subprojects