We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8079328 + c066958 commit 92c8914Copy full SHA for 92c8914
build.gradle
@@ -1,8 +1,14 @@
1
buildscript {
2
- repositories { jcenter() }
+ repositories {
3
+ jcenter()
4
+ maven {
5
+ url "https://plugins.gradle.org/m2/"
6
+ }
7
8
9
dependencies {
10
classpath 'com.netflix.nebula:gradle-aggregate-javadocs-plugin:2.2.+'
11
+ classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.8'
12
}
13
14
plugins {
@@ -82,6 +88,11 @@ allprojects {
82
88
apply plugin: 'java'
83
89
apply plugin: 'application'
84
90
apply plugin: 'jacoco'
91
+ apply plugin: 'net.ltgt.errorprone'
92
+
93
+ configurations.errorprone {
94
+ resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.0.8'
95
85
96
86
97
87
98
repositories {
0 commit comments