Search Gradle plugins

Version 1.5.1

Created 31 January 2022.

Keep your gradle builds dry 干

Using the plugins DSL:

plugins {
  id("com.diffplug.blowdryerSetup") version "1.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.diffplug:blowdryer:1.5.1")
  }
}

apply(plugin = "com.diffplug.blowdryerSetup")

Using the plugins DSL:

plugins {
  id "com.diffplug.blowdryerSetup" version "1.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.diffplug:blowdryer:1.5.1"
  }
}

apply plugin: "com.diffplug.blowdryerSetup"

Learn how to apply plugins to subprojects