Search Gradle plugins

Version 1.5.0

1.5.0

Created 31 January 2022.

Keep your gradle builds dry 干

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.diffplug:blowdryer:1.5.0")
      }
    }
    
    apply(plugin = "com.diffplug.blowdryerSetup")
  • Applying plugins to all subprojects .