Package org.apache.maven.scm.command.add

Examples of org.apache.maven.scm.command.add.AddScmResult


        {
            try
            {
                ScmFileSet fileSet = new ScmFileSet( checkoutDirectory, relativized );
                getLog().debug( "scm add directory: " + relativized );
                AddScmResult addDirResult = scmProvider.add( scmRepository, fileSet, "Adding directory" );
                if ( !addDirResult.isSuccess() )
                {
                    getLog().debug( " Error adding directory " + relativized + ": " + addDirResult.getCommandOutput() );
                }
            }
            catch ( ScmException e )
            {
                //
View Full Code Here

TOP

Related Classes of org.apache.maven.scm.command.add.AddScmResult

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.