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)
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:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("pro.tark.checkstyleremote.checkstyle-remote:pro.tark.checkstyleremote.checkstyle-remote.gradle.plugin:1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("pro.tark.checkstyleremote.checkstyle-remote") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pro.tark.checkstyleremote.checkstyle-remote:pro.tark.checkstyleremote.checkstyle-remote.gradle.plugin:1.0-SNAPSHOT") } } apply(plugin = "pro.tark.checkstyleremote.checkstyle-remote")
- Applying plugins to all subprojects .