File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 17
17
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
18
18
*/
19
19
20
+ plugins {
21
+ id(" net.ltgt.errorprone" ) version " 0.8.1" apply false
22
+ }
23
+
20
24
apply(plugin : " java" );
21
25
apply(plugin : " maven" );
22
26
apply(plugin : " signing" );
23
27
apply(plugin : " osgi" );
24
28
apply(plugin : " idea" );
25
29
apply(plugin : " eclipse" );
30
+ apply(plugin : " net.ltgt.errorprone" );
26
31
27
32
apply(from : " project.gradle" );
28
33
@@ -35,6 +40,14 @@ repositories {
35
40
mavenCentral();
36
41
}
37
42
43
+ /*
44
+ * Add errorprone checking.
45
+ */
46
+ dependencies {
47
+ errorprone(" com.google.errorprone:error_prone_core:2.3.3" )
48
+ errorproneJavac(" com.google.errorprone:javac:9+181-r4173-1" )
49
+ }
50
+
38
51
/*
39
52
* Necessary! Otherwise TestNG will not be used...
40
53
*
You can’t perform that action at this time.
0 commit comments