Package com.nirima.jenkins.repo.build

Examples of com.nirima.jenkins.repo.build.ArtifactRepositoryItem.fileExists()


    public @Override void visitArtifact(MavenBuild build, MavenArtifact artifact)
    {
        // add a Maven 2 compatible artifact entry
        ArtifactRepositoryItem repositoryItem = new ArtifactRepositoryItem(build, artifact, false);
        if (!repositoryItem.fileExists()) {
            return; // skip this artifact, its file was purged
        }
        add(repositoryItem);

        // if this is a snapshot, also add a Maven 3 compatible artifact entry
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.