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

com.github.moleksyuk.vcs.impl.Mercurial.groovy Maven / Gradle / Ivy

package com.github.moleksyuk.vcs.impl

import com.github.moleksyuk.vcs.Vcs
import com.github.moleksyuk.vcs.VcsType
import com.github.moleksyuk.vcs.cmd.parser.VcsCommandOutputParser
import com.github.moleksyuk.vcs.cmd.parser.impl.CommonOutputParser

class Mercurial implements Vcs {

    @Override
    VcsType getType() {
        return VcsType.MERCURIAL
    }

    @Override
    String getCommand() {
        return 'hg'
    }

    @Override
    List getCommandArguments() {
        return ['id', '--num', '--rev', 'tip']
    }

    @Override
    VcsCommandOutputParser getCommandOutputParser() {
        return new CommonOutputParser()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy