Extra - Added Codecov support
[jpf-core.git] / build.gradle
index 555abff2ca320a99b272cda8ad11ca98a027cd59..c2db9bc257ccfe0da29e0bf5fc4166d8ac92ac67 100644 (file)
@@ -1,6 +1,7 @@
 plugins {
-    id "com.gradle.build-scan"
+    id "com.gradle.build-scan" version "1.14"
     id "java"
+    id "jacoco"
 }
 
 sourceCompatibility = 1.8
@@ -19,6 +20,13 @@ buildScan {
     termsOfServiceAgree = 'yes'
 }
 
+jacocoTestReport {
+    reports {
+        xml.enabled = true
+        html.enabled = false
+    }
+}
+
 repositories {
     mavenCentral()
 }