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.
1 parent 8886d50 commit 8eef0aeCopy full SHA for 8eef0ae
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 {
@@ -67,6 +73,11 @@ allprojects {
67
73
apply plugin: 'java'
68
74
apply plugin: 'application'
69
75
apply plugin: 'jacoco'
76
+ apply plugin: 'net.ltgt.errorprone'
77
+
78
+ configurations.errorprone {
79
+ resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.0.8'
80
70
81
71
82
72
83
repositories {
0 commit comments