maven - Resolved issue The type java.util.Map$Entry cannot be resolved. It is indirectly referenced from required .class files -
wanted share how able resolve error "the type java.util.map$entry cannot resolved. indirectly referenced required .class files" searched quite while , not able find answer matched seeing. did find following explanation message meant quite helpful:
"that error means have unresolved dependency, i.e. 1 of jar files depends on other jar file have not added classpath."
the solution update maven dependencies in main project pom.xml file. made following changes , problem went away.
aspectj-maven-plugin 1.5 -> 1.7 maven-compiler-plugin 3.0 -> 3.3 aspectjweaver 1.7.3 -> 1.8.6 so discovery when have these sorts of errors, make sure sure dependencies date
Comments
Post a Comment