Search Gradle plugins

si.dlabs.soter

Owner: D·Labs

Android gradle plugin that adds Checkstyle, Findbugs and PMD functionality

https://github.com/dlabs/soter

Sources: https://github.com/dlabs/soter

Version 1.0.8 (latest)

Created 26 May 2016.

Android gradle plugin that adds Checkstyle, Findbugs and PMD functionality

Using the plugins DSL:

plugins {
  id("si.dlabs.soter") version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.si.dlabs.gradle:soter:1.0.8")
  }
}

apply(plugin = "si.dlabs.soter")

Using the plugins DSL:

plugins {
  id "si.dlabs.soter" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.si.dlabs.gradle:soter:1.0.8"
  }
}

apply plugin: "si.dlabs.soter"

Learn how to apply plugins to subprojects