Search Gradle plugins

Version 1.0.3-beta1 (latest)

Created 14 December 2018.

A gradle plugin to help using the MCP with Gradle

Using the plugins DSL:

plugins {
  id("tk.0pendeath.deathtoolkit") version "1.0.3-beta1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.tk.0pendeath:deathtoolkit:1.0.3-beta1")
  }
}

apply(plugin = "tk.0pendeath.deathtoolkit")

Using the plugins DSL:

plugins {
  id "tk.0pendeath.deathtoolkit" version "1.0.3-beta1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.tk.0pendeath:deathtoolkit:1.0.3-beta1"
  }
}

apply plugin: "tk.0pendeath.deathtoolkit"

Learn how to apply plugins to subprojects