com.thomasjensen.checkstyle.packaging
A build framework for custom Checkstyle checks
http://checkstyle-packaging.thomasjensen.com/
Version 0.6.2 (latest)
0.6.2
Created 03 May 2015.
just a test, do not use yet
Using the plugins DSL:
plugins {
id("com.thomasjensen.checkstyle.packaging") version "0.6.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.thomasjensen.checkstyle.packaging:checkstyle-packaging:0.6.2")
}
}
apply(plugin = "com.thomasjensen.checkstyle.packaging")
Using the plugins DSL:
plugins {
id "com.thomasjensen.checkstyle.packaging" version "0.6.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.thomasjensen.checkstyle.packaging:checkstyle-packaging:0.6.2"
}
}
apply plugin: "com.thomasjensen.checkstyle.packaging"