pro.tark.checkstyleremote.checkstyle-remote
Owner: Pavel Ismailov
Grabs remote checkstyle file from centralized place and checkstyles your project
https://github.com/tark-hq/checkstyle-remote
Sources: https://github.com/tark-hq/checkstyle-remote
Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
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"