The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
186 views

how to mvn deploy-deploy:file from java app

I am trying to deploy a file to the local repository using maven-embedder 3.0.4 from java program, but I'm getting following error: Failed to execute goal ...
0
votes
0answers
85 views

MavenCli.doMain(…) does not work

I was trying to run client.doMain(args...), but it returns 1 and didn't execute the goals. How can I solve this issue? My code looks like this: m_client.doMain( goals, dir.getCanonicalPath(), ...
2
votes
1answer
223 views

How to call a maven mojo from java/scala using the maven-embedder

I want to call the help:effective-pom mojo directly from java/scala. Is there a minimal example how to setup the maven-runtime and call the mojo? I assume some context is needed before calling the ...
0
votes
1answer
389 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. ArtifactResolutionRequest request = new ...
5
votes
1answer
2k views

How to run maven from java?

I want to execute maven command from Java for development of a plugin. I tried maven-embedder but looks like it is now not supported. Is someone aware of some other tool which can be used?
0
votes
1answer
418 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
1
vote
1answer
938 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 ...