Package org.apache.maven.project

Examples of org.apache.maven.project.MavenProject.writeModel()


    if (pom != null) {
      File targetPom = new File(project.getFileSystem().getSonarWorkingDirectory(), "sonar-pom.xml");
      FileWriter fileWriter = null;
      try {
        fileWriter = new FileWriter(targetPom, false);
        pom.writeModel(fileWriter);

      } catch (IOException e) {
        throw new IllegalStateException("Can not save pom to " + targetPom, e);
      } finally {
        IOUtils.closeQuietly(fileWriter);
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.