Search Gradle plugins

info.adavis.qualitychecks

Simple Gradle Plugin for including Checkstyle, FindBugs, and PMD in your project.

https://github.com/adavis/quality-checks

Sources: https://github.com/adavis/quality-checks

Version 0.2.4 (latest)

0.2.4

Created 22 May 2017.

Simple Gradle Plugin for including Checkstyle, FindBugs, and PMD in your Android project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("info.adavis.qualitychecks") version "0.2.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.info.adavis:qualityChecks:0.2.4")
      }
    }
    
    apply(plugin = "info.adavis.qualitychecks")
  • Applying plugins to all subprojects .