Java tutorial
/* * Copyright 2016 Tawja. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.tawja.maven.discovery; import java.io.File; import java.io.FileReader; import org.apache.maven.model.Model; import org.apache.maven.model.io.xpp3.MavenXpp3Reader; import org.apache.maven.project.MavenProject; /** * * @author jbennani */ public class MavenManager { public void readDiscoveryConfig(String path) { } public MavenProject loadMavenPom(String path) { File pomfile = new File(path); Model model = null; FileReader reader = null; MavenXpp3Reader mavenreader = new MavenXpp3Reader(); try { reader = new FileReader(pomfile); model = mavenreader.read(reader); model.setPomFile(pomfile); } catch (Exception ex) { } MavenProject project = new MavenProject(model); //return project.getGroupId() + ":" + project.getArtifactId(); return project; } }