Skip to content

Commit

Permalink
Add an special checkstyle configuration for the java modules
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrovgs committed Nov 16, 2015
1 parent db3642a commit 54077e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Expand Up @@ -19,8 +19,13 @@ allprojects {

apply plugin: 'checkstyle'

checkstyle {
toolVersion = "6.7"
configFile = '../config/checkstyle/checkstyle.xml' as File
}

task checkstyle(type: Checkstyle) {
configFile file('../checkstyle/checkstyle.xml')
configFile file('../config/checkstyle/checkstyle.xml')
source 'src'
include '**/*.java'
exclude '**/gen/**'
Expand Down
File renamed without changes.

0 comments on commit 54077e8

Please sign in to comment.