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
Using the plugins DSL:
plugins {
id("com.glonk.eclipse-checkstyle") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.glonk.gradle:gradle-eclipse-checkstyle:0.0.1")
}
}
apply(plugin = "com.glonk.eclipse-checkstyle")
Using the plugins DSL:
plugins {
id "com.glonk.eclipse-checkstyle" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.glonk.gradle:gradle-eclipse-checkstyle:0.0.1"
}
}
apply plugin: "com.glonk.eclipse-checkstyle"