runeliteplus: checkstyle fixes, add support for gradle in travis

This commit is contained in:
Zeruth
2019-07-23 23:54:35 -04:00
parent 85d4ab354d
commit c2739cba77
9 changed files with 2330 additions and 1254 deletions

View File

@@ -1,5 +1,6 @@
allprojects {
apply plugin: 'maven'
apply plugin: 'checkstyle'
group = 'net.runelite'
version = '1.5.30-SNAPSHOT'
@@ -23,7 +24,11 @@ subprojects {
maven { url "https://raw.githubusercontent.com/runelite-extended/maven-repo/master" }
}
checkstyle {
toolVersion = '6.4.1'
sourceSets = [sourceSets.main]
configFile = rootProject.file("/checkstyle/checkstyle.xml");
showViolations = true
ignoreFailures = true
}
}