Search Gradle plugins

Version 1.0.1

Created 03 April 2021.

yaml -> DDL | DDL -> Entity Relationship Diagram

Using the plugins DSL:

plugins {
  id("com.matsuyoido.er") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.matsuyoido:er-plugin:1.0.1")
  }
}

apply(plugin = "com.matsuyoido.er")

Using the plugins DSL:

plugins {
  id "com.matsuyoido.er" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.matsuyoido:er-plugin:1.0.1"
  }
}

apply plugin: "com.matsuyoido.er"

Learn how to apply plugins to subprojects