Package hudson.maven

Examples of hudson.maven.ModuleName


     *
     * @param module the module to do
     * @return the metadata.
     */
    private List<MetadataValue> getModuleData(MavenModule module) {
        ModuleName moduleName = module.getModuleName();
        TreeNodeMetadataValue[] path = TreeStructureUtil.createTreePath(null, "maven", "module");
        TreeNodeMetadataValue moduleNode = path[1];
        TreeStructureUtil.addValue(moduleNode, moduleName.groupId, "", "groupId");
        TreeStructureUtil.addValue(moduleNode, moduleName.artifactId, "", "artifactId");
        List<MetadataValue> list = new LinkedList<MetadataValue>();
View Full Code Here

TOP

Related Classes of hudson.maven.ModuleName

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.