Search Gradle plugins

com.monits.staticCodeAnalysis

Configures PMD, CPD, Checkstyle ad Finbugs out of the box for Android and Java projects beyond defauts to improve performance and extensibility, while allowing to use remote (cacheable) configuration

https://github.com/Monits/static-code-analysis-plugin

Sources: https://github.com/Monits/static-code-analysis-plugin.git

Version 2.6.11

2.6.11

Created 16 September 2019.

Configures PMD, CPD, Checkstyle and Findbugs out of the box for Android and Java projects beyond defaults to improve performance and extensibility, while allowing to use remote (cacheable) configuration

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.monits.staticCodeAnalysis") version "2.6.11"
}

See also:

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