Search Gradle plugins

Version 0.0.4

0.0.4

Created 05 June 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.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.glonk.gradle:gradle-eclipse-checkstyle:0.0.4")
      }
    }
    
    apply(plugin = "com.glonk.eclipse-checkstyle")
  • Applying plugins to all subprojects .