org.kt3k.gradle.plugin.coveralls.domain.GitInfo.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
import groovy.transform.TupleConstructor
@TupleConstructor
class GitInfo {
Head head
String branch
List remotes
@TupleConstructor
public static class Head {
String id
String authorName
String authorEmail
String committerName
String committerEmail
String message
}
@TupleConstructor
public static class Remote {
String name
String url
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy