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

com.github.moleksyuk.vcs.impl.Svn.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 Svn implements Vcs {

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

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

    @Override
    List getCommandArguments() {
        return ['.']
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy