Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

1.0-SNAPSHOT

Created 02 October 2018.

Grabs remote checkstyle file from centralized place and checkstyles your project

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.pro.tark.checkstyle:checkstyle-remote:1.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "pro.tark.checkstyleremote.checkstyle-remote")
  • Applying plugins to all subprojects .