Hi all,

I am trying to read a pom.xml and instantiate it as a MavenProject for 
testing. I am able to read it using the Xpp3Reader and then I gave the 
Model to a MavenProject.

The problem now, is that most of my attributes are not set. The most 
important one for me (at the moment) is the parent, which for some 
reason is null in the MavenProject. It is correctly set in the Model though.

Do I need to instantiate the MavenProject differently or tell it to 
resolve all attributes or something?

Current code is this:

MavenXpp3Reader reader = new MavenXpp3Reader();
Model model = reader.read(pomFile);
MavenProject project = new MavenProject(model);
return project.getParent();

Any help is appreciated!

Thanks,

-- 
Roland Asmann
Senior Software Engineer

adesso Austria GmbH
Floridotower 26. Stock              T +43 1 2198790-27
Floridsdorfer Hauptstr. 1           F +43 1 2198790-927
A-1210 Wien                         M +43 664 88657566
                                    E roland.asm...@adesso.at
                                    W www.adesso.at

-------------------------------------------------------------
             >>> business. people. technology. <<<
-------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to