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

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

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