maven is downloading every dependency when doing ' mvn clean package' . along with the dependencies , its also trying to download maven-metadata.xml with each dependency. In my system maven is not able to download this maven-metadata.xml . Does anyone know , what is this maven-metadata.xml ? and the possibilities of download failure ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
maven-metadata.xml is required only if you do not know the group id, artifact id and version information. Please post your pom.xml here. There could be some issues with it. Also, ensure your local Maven repository (on Windows, D:\Documents and Settings\user.name.m2\repository) contains the needed dependencies. For example, log4j can be considered correctly installed locally only if the repository\log4j\log4j\1.2.12 folder contains a Jar file and POM file. When these two are present and you mention artifact id, group id and version correctly in pom.xml, Maven will pick up the jar file locally and will NOT download each time you build. |
|||||||||
|