Package org.apache.maven.plugin.deploy.stubs

Examples of org.apache.maven.plugin.deploy.stubs.AttachedArtifactStub


        String packaging = getVariableValueFromObject( mojo, "packaging" ).toString();

        for( Iterator iter=attachedArtifacts.iterator(); iter.hasNext(); )
        {
            AttachedArtifactStub attachedArtifact = ( AttachedArtifactStub ) iter.next();

            File deployedArtifact = new File( remoteRepo, "basic-deploy-with-attached-artifacts" + "/" +
                                               attachedArtifact.getGroupId().replace( '.', '/' ) + "/" +
                                               attachedArtifact.getArtifactId() + "/" +
                                               attachedArtifact.getVersion() + "/" + attachedArtifact.getArtifactId() + "-" +
                                               attachedArtifact.getVersion() + "." + packaging );
            assertTrue( deployedArtifact.exists() );
        }
       
        //check the artifacts in remote repository
        List expectedFiles = new ArrayList();
View Full Code Here

TOP

Related Classes of org.apache.maven.plugin.deploy.stubs.AttachedArtifactStub

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.