Search Gradle plugins

Version 0.3.0

Created 02 March 2022.

Run MyBatis Migrations commands through Gradle

Using the plugins DSL:

plugins {
  id("com.github.boginw.mybatis-migrations") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.boginw:mybatis-migrations:0.3.0")
  }
}

apply(plugin = "com.github.boginw.mybatis-migrations")

Using the plugins DSL:

plugins {
  id "com.github.boginw.mybatis-migrations" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.boginw:mybatis-migrations:0.3.0"
  }
}

apply plugin: "com.github.boginw.mybatis-migrations"

Learn how to apply plugins to subprojects