org.kt3k.gradle.plugin.CoverallsPluginExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coveralls-gradle-plugin Show documentation
Show all versions of coveralls-gradle-plugin Show documentation
This plugin helps to upload coverage data to Coveralls
package org.kt3k.gradle.plugin
class CoverallsPluginExtension {
/** CI service name */
String service = null // it is for the services other than travis-ci
/** the flag to save JSON string as file */
Boolean saveAsFile = false
Boolean sendToCoveralls = true
/** the JSON file path */
String saveFilePath = 'build/coveralls/report.json'
/** API endpoint of Coveralls */
String apiEndpoint = 'https://coveralls.io/api/v1/jobs'
/** Jacoco report path */
Object jacocoReportPath = 'build/reports/jacoco/test/jacocoTestReport.xml'
/** Cobertura report path */
Object coberturaReportPath = 'build/reports/cobertura/coverage.xml'
/**
* Additional source directories
*/
List sourceDirs = []
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy