com.glonk.eclipse-checkstyle
Owner: Patrick Hensley
Configures Eclipse Checkstyle plugin from Gradle
http://github.com/phensley/gradle-eclipse-checkstyle
Sources: http://github.com/phensley/gradle-eclipse-checkstyle
Version 0.0.6 (latest)
Created 18 November 2015.
Configures Eclipse Checkstyle plugin from Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.glonk.eclipse-checkstyle") version "0.0.6"
}
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("com.glonk.eclipse-checkstyle:com.glonk.eclipse-checkstyle.gradle.plugin:0.0.6") }
It can then be applied in the precompiled script plugin:plugins { id("com.glonk.eclipse-checkstyle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.glonk.eclipse-checkstyle:com.glonk.eclipse-checkstyle.gradle.plugin:0.0.6") } } apply(plugin = "com.glonk.eclipse-checkstyle")
- Applying plugins to all subprojects .