org.kt3k.gradle.plugin.coveralls.domain.ServiceInfo.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.coveralls.domain
/**
* The model class of CI service information
*/
class ServiceInfo {
String serviceName;
String serviceJobId;
String repoToken;
public ServiceInfo(String serviceName, String serviceJobId, String repoToken) {
this.serviceName = serviceName;
this.serviceJobId = serviceJobId;
this.repoToken = repoToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy