Package hudson.maven.reporters

Examples of hudson.maven.reporters.MavenAbstractArtifactRecord


        MavenModuleSetBuild mavenBuild = getMavenBuild(build);
        if (mavenBuild == null) {
            return actions;
        }
        for (Entry<MavenModule, MavenBuild> e : mavenBuild.getModuleLastBuilds().entrySet()) {
            MavenAbstractArtifactRecord a = e.getValue().getAction( MavenAbstractArtifactRecord.class );
            if (a == null) {
                listener.getLogger().println("No artifacts are recorded for module" + e.getKey().getName() + ". Is this a Maven project?");
            } else {
                actions.add( a );   
            }
View Full Code Here

TOP

Related Classes of hudson.maven.reporters.MavenAbstractArtifactRecord

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.