Search Gradle plugins

Version 0.0.1 (latest)

Created 17 March 2021.

Gradle JIG ERD Plugin

Using the plugins DSL:

plugins {
  id("com.github.irof.sandbox.jig-erd") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.irof.sandbox:jig-erd-gradle-plugin:0.0.1")
  }
}

apply(plugin = "com.github.irof.sandbox.jig-erd")

Using the plugins DSL:

plugins {
  id "com.github.irof.sandbox.jig-erd" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.irof.sandbox:jig-erd-gradle-plugin:0.0.1"
  }
}

apply plugin: "com.github.irof.sandbox.jig-erd"

Learn how to apply plugins to subprojects