Why is my nexus metadata.xml snapshot version incorrect?

maven, nexus, snapshot

Solution

I don't know why this happens, but I solved scheduling a Nexus task to "rebuild metadata" in "Scheduled Task" admin option. For now, this is a valid solution for me.

Additional information about how to fix the issue in this answer

Problem

This is my metadata. It's clearly incorrect, but I don't know why, so maven can't update download dependencies in my project. ``` <metadata modelVersion="1.1.0"> <groupId>com.test</groupId> <artifactId>test-sdk</artifactId> <version>1.7.0-SNAPSHOT</version> <versioning> <snapshot> <timestamp>20140130.175110</timestamp> <buildNumber>58</buildNumber> </snapshot> <lastUpdated>20140130175110</lastUpdated> <snapshotVersions> <snapshotVersion> <extension>jar</extension> <value>1.7.0-20140130.175109-57</value> <updated>20140130175110</updated> </snapshotVersion> <snapshotVersion> <extension>pom</extension> <value>1.7.0-20140130.175109-57</value> <updated>20140130175110</updated> </snapshotVersion> </snapshotVersions> </versioning> </metadata> ```

Original source