Questions tagged [effective-pom]
7 questions
3
votes
0 answers
How does IntelliJ IDEA generate effective-pom?
I have a multi-module maven project. For this example let's consider two modules of them:
parent module (pom packaging);
child module (also pom packaging).
There is Saxon library in dependencyManagement section of the parent pom. The exact name of…

Roman Khomyshynets
- 724
- 1
- 9
- 12
2
votes
1 answer
How come Maven can generate the `effective pom` but fails to generate the `dependency list`?
I was playing with a Maven project when I recognized that:
$mvn help:effective-pom leads to BUILD SUCCESS
However
$mvn dependency:list leads to BUILD FAILURE
As far I understand, the effective pom includes a detailed list of dependencies as well. So…

Emadpres
- 3,466
- 2
- 29
- 44
1
vote
1 answer
Intellij difference between effective pom and dependencyies pop up
I opened the dependencies pop-up in pom.xml file by
right click anywhere in pom.xml file -> maven -> show dependencies pop up
Also I opened the effective pom by
right click anywhere in pom.xml file -> maven -> show effective pom
I noticed that there…

Alperen Üretmen
- 307
- 1
- 13
1
vote
0 answers
How to prevent Unknown packaging "bundle" error when computing the effective POM
I am reading an effective POM from the command line (using the approach described here: How to specify an artifact in help:effective-pom?)
For the artifact:
com.typesafe.scala-logging
…

Jmini
- 9,189
- 2
- 55
- 77
1
vote
1 answer
How most basic pom file get pluginManagement in Effective pom
Just the most basic pom.xml file
Effective pom shows that it has pluginManagement with reference to maven-antrun-plugin
From where is it taken ?
How to avoid this ?
In bigger context such dependencies are shown as outdated by versions at "mvn…

Roman Ivanov
- 2,477
- 3
- 20
- 31
0
votes
0 answers
errors with spring boot after changing the parent pom.xml
I have to integrate another parent pom.xml file to my project. And after changing the parent pom.xml, I am getting diff exceptions and I am not able to figure out the root cause behind them.
I can sense that these exceptions are related to…

Onki
- 1,879
- 6
- 38
- 58
0
votes
1 answer
Building an eclipse plugin. What dependency and which class could I extend to implement warning signs in Java and Effective pom files for a project?
I am a bit new to eclipse plugin development. My requirement:
I want to show warning signs(like screenshot attached) in the import statements Java files and effective pom files of Java projects based on some parameters.
Assuming eclipse already has…

Ron777
- 11
- 1
- 2