Search Gradle plugins

Version 0.4

0.4

Created 03 October 2022.

Gradle Plugin that detects violations of Gradle best practices in Gradle Plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.autonomousapps.plugin-best-practices-plugin") version "0.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.autonomousapps:plugin-best-practices-plugin:0.4")
      }
    }
    
    apply(plugin = "com.autonomousapps.plugin-best-practices-plugin")
  • Applying plugins to all subprojects .