1 year ago
#389081

Gustavo Steinmetz
Heroku not allowing MavenCli do maven install (NoSuchElementException)
I'm working on a project where I need to run the maven install
command in other projects. To resolve this, I used MavenCli which allows the execution of Maven commands by a Java Spring Boot project. A snippet of the executed code:
private int install(File pom, PrintStream out) throws IOException {
log.info("Maven install started: " + pom.getCanonicalPath());
System.setProperty("maven.multiModuleProjectDirectory", pom.getCanonicalPath());
return this.maven.doMain(new String[]{
"install"},
pom.getCanonicalPath(), out, out);
}
The this.maven is initialized in the constructor with this.maven = new MavenCli()
. The pom file have the path: "./src/main/resources/github-tasks/main/java-coding-tasks".
In localhost, the code works perfect, but when I deploy in Heroku and call this method, Heroku throw a NoSuchElementException:
2022-04-07T19:21:44.993728+00:00 app[web.1]: 2022-04-07 19:21:44.993 INFO 4 --- [onPool-worker-3] c.x.c.repository.MavenRepository : 2022-04-07 19:21:44.574 ERROR 4 --- [onPool-worker-3] org.apache.maven.cli.MavenCli : Error executing Maven.
2022-04-07T19:21:44.993735+00:00 app[web.1]: 2022-04-07 19:21:44.943 ERROR 4 --- [onPool-worker-3] org.apache.maven.cli.MavenCli : java.util.NoSuchElementException
2022-04-07T19:21:44.993735+00:00 app[web.1]: role: org.apache.maven.eventspy.internal.EventSpyDispatcher
2022-04-07T19:21:44.993736+00:00 app[web.1]: roleHint:
2022-04-07T19:21:44.993737+00:00 app[web.1]: 2022-04-07 19:21:44.969 ERROR 4 --- [onPool-worker-3] org.apache.maven.cli.MavenCli : Caused by: null
I already tried to change the pom file to relativePath, absolutePath, "./src/main/resources/github-tasks/main/java-coding-tasks/pom.xml", mixed the paths( in the system property "maven.multiModuleProjectDirectory" used relativePath and in the maven.doMain used absolutePath and vice versa), etc.
By the way, if I try to list the files in the directory that gives the NoSuchElementException, the files are there:
log.info("Directory in maven install: {}", Arrays.toString(pom.list()));
Log:
Directory in maven install: [pom.xml, .github, src, .git, README.md, .gitignore]
Does anyone know what's causing this and how to fix it?
java
spring
maven
heroku
maven-embedder
0 Answers
Your Answer