I\'m trying to create an intelliJ plugin that needs to execute maven targets on the current project. All the talk in the intertubes recommends using the MavenEmbedder. Goo
Working maven configuration for maven 3.6.3
MavenCli cli = new MavenCli();
System.setProperty("maven.multiModuleProjectDirectory", workingDirectory);
cli.doMain(new String[]{"compile"}, workingDirectory, System.out, System.err);
org.apache.maven
maven-embedder
3.6.3
org.apache.maven
maven-compat
3.6.3
org.slf4j
slf4j-simple
1.7.30