@@ -4,22 +4,23 @@ repositories { jcenter() }
44
55dependencies {
66 compileOnly gradleApi()
7+
78 // Checkstyle
8- compile (' com.puppycrawl.tools:checkstyle:8.2 ' ) {
9+ implementation (' com.puppycrawl.tools:checkstyle:8.7 ' ) {
910 // Android Lint also depends on guava, so don't bring it in twice
1011 exclude module : ' guava'
1112 }
1213 // FindBugs
13- compile ' com.google.code.findbugs:findbugs:3.0.1'
14+ implementation ' com.google.code.findbugs:findbugs:3.0.1'
1415 // SpotBugs
15- // compile 'com.github.spotbugs:spotbugs:3.1.0-RC5 '
16- // compile 'com.github.spotbugs:spotbugs-ant:3.1.0-RC5 '
17- // compile 'com.github.spotbugs:spotbugs-annotations:3.1.0-RC5 '
16+ // compile 'com.github.spotbugs:spotbugs:3.1.1 '
17+ // compile 'com.github.spotbugs:spotbugs-ant:3.1.1 '
18+ // compile 'com.github.spotbugs:spotbugs-annotations:3.1.1 '
1819 // compile 'com.github.spotbugs:spotbugs-archetype:0.1.0'
1920 // PMD
20- compile ' net.sourceforge.pmd:pmd-java:5.8 .1'
21+ implementation ' net.sourceforge.pmd:pmd-java:6.0 .1'
2122 // Error Prone
22- compile ' com.google.errorprone:error_prone_ant:2.1.1'
23+ implementation ' com.google.errorprone:error_prone_ant:2.1.1'
2324}
2425
2526project. ext {
@@ -28,7 +29,7 @@ project.ext {
2829 description = ' Static code analysis plugin for Android projects.'
2930 groupId = ' pt.simdea.verifier'
3031 artifactId = ' verifier'
31- version = " 3.5.9 "
32+ version = " 3.6.0 "
3233 website = ' https://github.com/simdea/android-quality-verifier'
3334 scm = ' https://github.com/simdea/android-quality-verifier'
3435 tags = [' android' , ' verifier' , ' check' , ' checkstyle' , ' spotbugs' , ' pmd' , ' lint' , ' quality' ]
0 commit comments