Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

Created 02 October 2018.

Grabs remote checkstyle file from centralized place and checkstyles your project

Using the plugins DSL:

plugins {
  id("pro.tark.checkstyleremote.checkstyle-remote") version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.pro.tark.checkstyle:checkstyle-remote:1.0-SNAPSHOT")
  }
}

apply(plugin = "pro.tark.checkstyleremote.checkstyle-remote")

Using the plugins DSL:

plugins {
  id "pro.tark.checkstyleremote.checkstyle-remote" version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.pro.tark.checkstyle:checkstyle-remote:1.0-SNAPSHOT"
  }
}

apply plugin: "pro.tark.checkstyleremote.checkstyle-remote"

Learn how to apply plugins to subprojects