Search Gradle plugins

Version 1.2.0 (latest)

Created 08 April 2023.

A plugin to simplify cruft tasks in gradle builds.

Using the plugins DSL:

plugins {
  id("de.0x3.cruft") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.0x3:gradle-cruft-plugin:1.2.0")
  }
}

apply(plugin = "de.0x3.cruft")

Using the plugins DSL:

plugins {
  id "de.0x3.cruft" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.0x3:gradle-cruft-plugin:1.2.0"
  }
}

apply plugin: "de.0x3.cruft"

Learn how to apply plugins to subprojects