Tagged Questions

1
vote
1answer
725 views

Set the logger for a Maven Embedder execution

I want to run a Maven compilation by my Java code. Thus, I've used the example of the usage of Maven Embedder explained here. This works pretty well, except that I want to redirect all the log ...
0
votes
1answer
202 views

Maven Embedder - getting a list of profiles

How do I get a list of all the profiles for a project in maven inside of a maven plugin? Would it be: MavenEmbedder.readModel(new File("path to pom.xml")).getProfiles(); Walter