Search Gradle plugins

Version 1.1.0 (latest)

Created 27 October 2020.

A shadowboard for facts, with dedicated ratchet holder

Using the plugins DSL:

plugins {
  id("org.mytake.factset") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.mytake.mtdo:factset-tooling:1.1.0")
  }
}

apply(plugin = "org.mytake.factset")

Using the plugins DSL:

plugins {
  id "org.mytake.factset" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.mytake.mtdo:factset-tooling:1.1.0"
  }
}

apply plugin: "org.mytake.factset"

Learn how to apply plugins to subprojects