src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/info/SvnInfoCommandExpanded.java [115:130]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Commandline cl = SvnCommandLineUtils.getBaseSvnCommandLine( fileSet.getBasedir(), repository );

        cl.createArg().setValue( "info" );

        if ( recursive )
        {
            cl.createArg().setValue( "--recursive" );
        }

        if ( revision != null && !revision.isEmpty() )
        {
            cl.createArg().setValue( "-r" );
            cl.createArg().setValue( revision );
        }

        Iterator<File> it = fileSet.getFileList().iterator();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/info/SvnInfoCommandExpanded.java [153:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Commandline cl = SvnCommandLineUtils.getBaseSvnCommandLine( fileSet.getBasedir(), repository );

        cl.createArg().setValue( "info" );

        if ( recursive )
        {
            cl.createArg().setValue( "--recursive" );
        }

        if ( revision != null && !revision.isEmpty() )
        {
            cl.createArg().setValue( "-r" );
            cl.createArg().setValue( revision );
        }

        Iterator<File> it = fileSet.getFileList().iterator();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



