Package org.apache.maven.archiva.common.artifact.builder

Examples of org.apache.maven.archiva.common.artifact.builder.LayoutArtifactBuilder.build()


    private Artifact buildArtifact( BaseFile file )
        throws BuilderException
    {
        LayoutArtifactBuilder builder = (LayoutArtifactBuilder) artifactBuilders.get( layoutId );

        Artifact artifact = builder.build( file.getRelativePath() );
        artifact.setRepository( repository );
        artifact.setFile( file );

        return artifact;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.