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 3.2

3.2

Created 15 November 2022.

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 "3.2"
}

See also:

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