Package org.apache.maven.scm.provider.svn.svnexe.command.info

Examples of org.apache.maven.scm.provider.svn.svnexe.command.info.SvnInfoCommand


        return new SvnListCommand();
    }

    public SvnCommand getInfoCommand()
    {
        return new SvnInfoCommand();
    }
View Full Code Here


        return new SvnListCommand();
    }

    public SvnCommand getInfoCommand()
    {
        return new SvnInfoCommand();
    }
View Full Code Here

        return new SvnListCommand();
    }

    public SvnCommand getInfoCommand()
    {
        return new SvnInfoCommand();
    }
View Full Code Here

    protected String getRepositoryURL( File path )
        throws ScmException
    {
        // Note: I need to supply just 1 absolute path, but ScmFileSet won't let me without
        // a basedir (which isn't used here anyway), so use a dummy file.
        SvnInfoCommand infoCmd = (SvnInfoCommand) getInfoCommand();
        infoCmd.setLogger( this.getLogger() );
        InfoScmResult result =
            infoCmd.executeInfoCommand( null, new ScmFileSet( new File( "" ), path ), null, false, null );

        if ( result.getInfoItems().size() != 1 )
        {
            throw new ScmRepositoryException(
                "Cannot find URL: " + ( result.getInfoItems().size() == 0 ? "no" : "multiple" )
View Full Code Here

        return new SvnListCommand();
    }

    public SvnCommand getInfoCommand()
    {
        return new SvnInfoCommand();
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.scm.provider.svn.svnexe.command.info.SvnInfoCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.