Search Gradle plugins

Version 0.3 (latest)

Created 02 September 2015.

A plugin for Gradle to allow for running SchemaSpy as a part of the buildDashboard plugin.

Using the plugins DSL:

plugins {
  id("com.tomtresansky.gradle.plugin.schemaspy") version "0.3"
}

Using legacy plugin application:

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

apply(plugin = "com.tomtresansky.gradle.plugin.schemaspy")

Using the plugins DSL:

plugins {
  id "com.tomtresansky.gradle.plugin.schemaspy" version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.tomtresansky.gradle.plugin.schemaspy:gradle-schemaspy-plugin:0.3"
  }
}

apply plugin: "com.tomtresansky.gradle.plugin.schemaspy"

Learn how to apply plugins to subprojects