Search Gradle plugins

Version 1.1.0

1.1.0

Created 12 February 2021.

Keep your gradle builds dry å¹²

Add this plugin to your build using the plugins DSL:

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

See also:

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