Search Gradle plugins

com.dorkbox.GradleUtils

Gradle Plugin to manage various Gradle tasks, such as updating gradle and dependencies

https://git.dorkbox.com/dorkbox/GradleUtils

Sources: https://git.dorkbox.com/dorkbox/GradleUtils

Version 2.0

2.0

Created 11 April 2021.

Gradle Plugin to manage various Gradle tasks, such as updating gradle and dependencies

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.dorkbox.GradleUtils") version "2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.dorkbox:GradleUtils:2.0")
      }
    }
    
    apply(plugin = "com.dorkbox.GradleUtils")
  • Applying plugins to all subprojects .