aboutsummaryrefslogtreecommitdiff
path: root/nullaway/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'nullaway/build.gradle')
-rw-r--r--nullaway/build.gradle18
1 files changed, 1 insertions, 17 deletions
diff --git a/nullaway/build.gradle b/nullaway/build.gradle
index 62c19a6..d379406 100644
--- a/nullaway/build.gradle
+++ b/nullaway/build.gradle
@@ -17,9 +17,7 @@ import net.ltgt.gradle.errorprone.CheckSeverity
plugins {
id 'java-library'
- // For code coverage:
- id 'jacoco'
- id 'com.github.nbaztec.coveralls-jacoco'
+ id 'nullaway.jacoco-conventions'
}
sourceCompatibility = "1.8"
@@ -87,17 +85,3 @@ test {
apply plugin: 'com.vanniktech.maven.publish'
-jacoco {
- toolVersion = "0.8.7"
-}
-
-jacocoTestReport {
- reports {
- xml.enabled = true // coveralls plugin depends on xml format report
- html.enabled = true
- }
-}
-
-coverallsJacoco {
- reportPath = "nullaway/build/reports/jacoco/test/jacocoTestReport.xml"
-}