1
I have a Spring application that uses Maven. All the dependencies are in the file pom.xml
or the Jars are in my repository .m2
local. Every time I try to run the application the following messages appear:
The Class-Path manifest attribute in
C:\Users\local\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.3\jaxb-impl-
2.2.3.jar referenced one or more files that do not exist:
C:\Users\local\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.3\jaxb-
api.jar,C:\Users\local\.m2\repository\com\sun\xml\bind\jaxb-
impl\2.2.3\jaxb1-impl.jar
The Class-Path manifest attribute in
C:\Users\local\.m2\repository\xalan\xalan\2.7.2\xalan-2.7.2.jar referenced
one or more files that do not exist:
C:\Users\local\.m2\repository\xalan\serializer\2.7.2\xml-apis.jar
As I add the Jars manually these errors will decrease but I have not found all the Jars to download yet. Some additional configuration to the project could solve this?
Are you using any Maven plugin for packaging? Put your pom.xml here.
– Giuliana Bezerra
I’m trying to write an answer, but it started to get complicated the part about solving Xalan. I could post your
pom.xml
? Or else, at least say what dependency you use Xalan?– Victor Stafusa
Removes the . m2 folder, as Voce uses mavem, downloads all dependencies again, checking the force update option. After downloading all dependencies, validate the program, and try to run again. Usually it works for min...
– Rodrigo Nantes