开发者

How to programmatically build the effective model of a pom file?

开发者 https://www.devze.com 2023-04-05 05:38 出处:网络
I would create programmatically the effective model from a pom file to get all inherited attributes in the pom model instance. I would analyze some attributes of a pom - but I need for it all attribut

I would create programmatically the effective model from a pom file to get all inherited attributes in the pom model instance. I would analyze some attributes of a pom - but I need for it all attributes - 开发者_如何学编程incl. inhertied.

What have I to do? I have tried Sonatype Aether but I did not find a example.


You could just run mvn help:effective-pom to get the pom that maven is actually using, including all default inherited and parent pom inherited attributes. I don't believe this would give you all the transitive dependencies of listed dependencies, but it should give you what you are asking for here.


Check out this Gist https://gist.github.com/reiz/6203767. It shows a method which builds a MavenProject inside of a maven plugin. On the MavenProject you can call methods like project.getDependencies() and so on.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号