Add the errorprone compiler.

This commit is contained in:
Tyler Benson 2018-04-04 20:48:28 +08:00
parent c0f5ae0026
commit 79a9826863
5 changed files with 13 additions and 6 deletions

View File

@ -26,9 +26,9 @@ public class TracerInstaller {
public static void logVersionInfo() { public static void logVersionInfo() {
// version classes log important info // version classes log important info
// in static initializers // in static initializers
DDTraceOTInfo.VERSION.toString(); final String s = DDTraceOTInfo.VERSION.toString();
DDTraceApiInfo.VERSION.toString(); final String s1 = DDTraceApiInfo.VERSION.toString();
DDJavaAgentInfo.VERSION.toString(); final String s2 = DDJavaAgentInfo.VERSION.toString();
log.debug(GlobalTracer.class.getName() + " loaded on " + GlobalTracer.class.getClassLoader()); log.debug(GlobalTracer.class.getName() + " loaded on " + GlobalTracer.class.getClassLoader());
log.debug( log.debug(
AgentInstaller.class.getName() + " loaded on " + AgentInstaller.class.getClassLoader()); AgentInstaller.class.getName() + " loaded on " + AgentInstaller.class.getClassLoader());

View File

@ -11,7 +11,7 @@ public class DDTraceApiInfo {
static { static {
String v; String v;
try { try {
final StringBuffer sb = new StringBuffer(); final StringBuilder sb = new StringBuilder();
final BufferedReader br = final BufferedReader br =
new BufferedReader( new BufferedReader(

View File

@ -5,7 +5,8 @@ buildscript {
dependencies { dependencies {
classpath "io.franzbecker:gradle-lombok:1.8" classpath "io.franzbecker:gradle-lombok:1.8"
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.18" classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.18"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.13"
} }
} }

View File

@ -15,7 +15,7 @@ public class DDTraceOTInfo {
static { static {
String v; String v;
try { try {
final StringBuffer sb = new StringBuffer(); final StringBuilder sb = new StringBuilder();
final BufferedReader br = final BufferedReader br =
new BufferedReader( new BufferedReader(

View File

@ -11,6 +11,12 @@ lombok { // optional: values below are the defaults
sha256 = "c5178b18caaa1a15e17b99ba5e4023d2de2ebc18b58cde0f5a04ca4b31c10e6d" sha256 = "c5178b18caaa1a15e17b99ba5e4023d2de2ebc18b58cde0f5a04ca4b31c10e6d"
} }
apply plugin: "net.ltgt.errorprone"
tasks.withType(JavaCompile) {
// workaround for: https://github.com/google/error-prone/issues/780
options.compilerArgs += ['-Xep:ParameterName:OFF']
}
apply plugin: "eclipse" apply plugin: "eclipse"
eclipse { eclipse {
classpath { classpath {