Tagged Questions

0
votes
1answer
19 views

How to resolve maven dependencies inside the maven plugin?

Im trying to use ArtifactResolver.resolve(ArtifactResolutionRequest) with flag resolveTransitively=true and it takes 10min for separated module of my project. If i just build it with mvn it takes ...
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