All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kt3k.gradle.plugin.coveralls.domain.ServiceInfo.groovy Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
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