Eclipse says it needs com.sun.jmx:jmxri:jar:1.2.1, then I added in the pom as below. But then it complains about the dependency I just added, why is that?
Thanks!
Eclipse says it needs com.sun.jmx:jmxri:jar:1.2.1, then I added in the pom as below. But then it complains about the dependency I just added, why is that?
Thanks!
I think I found the answer: Maven failing to resolve recursive dependencies with multiple repositories
need to change log4j from 1.2.15 to 1.2.16
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>