Examples of POM


Examples of org.springframework.roo.project.maven.Pom

        return (ProjectMetadata) metadataService.get(ProjectMetadata
                .getProjectIdentifier(moduleName));
    }

    public String getProjectName(final String moduleName) {
        final Pom pom = getPomFromModuleName(moduleName);
        Validate.notNull(pom, "A pom with module name '%s' could not be found",
                moduleName);
        return pom.getDisplayName();
    }
View Full Code Here

Examples of org.springframework.roo.project.maven.Pom

                moduleName);
        return pom.getDisplayName();
    }

    public JavaPackage getTopLevelPackage(final String moduleName) {
        final Pom pom = getPomFromModuleName(moduleName);
        if (pom != null) {
            return new JavaPackage(pom.getGroupId());
        }
        return null;
    }
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.