Search Gradle plugins

Version 1.4 (latest)

1.4

Created 13 June 2021.

Easy and consistent setup of static analysis tools for Android and Java projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gradleup.static-analysis") version "1.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.gradleup:static-analysis-plugin:1.4")
      }
    }
    
    apply(plugin = "com.gradleup.static-analysis")
  • Applying plugins to all subprojects .