Package org.apache.maven.plugin.ear

Examples of org.apache.maven.plugin.ear.ArtifactTestStub



    protected Artifact createArtifactWithGroupId( String groupId, String artifactId, String version, String type,
                                                  String classifier )
    {
        return new ArtifactTestStub( groupId, artifactId, type, classifier, version );
    }
View Full Code Here


    }


    protected Artifact createArtifact( String artifactId, String version, String type, String classifier )
    {
        return new ArtifactTestStub( DEFAULT_GROUPID, artifactId, type, classifier, version );
    }
View Full Code Here

{

    protected Artifact createArtifactWithGroupId( String groupId, String artifactId, String version, String type,
                                                  String classifier )
    {
        return new ArtifactTestStub( groupId, artifactId, type, classifier, version );
    }
View Full Code Here

        return createArtifactWithGroupId( groupId, artifactId, version, type, null );
    }

    protected Artifact createArtifact( String artifactId, String version, String type, String classifier )
    {
        return new ArtifactTestStub( DEFAULT_GROUPID, artifactId, type, classifier, version );
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.plugin.ear.ArtifactTestStub

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.