@Jörg : we had the same issue with the class-path of the manifest. to resolve
it you have to add useUniqueVersions to false to all archives (jar, ejb,
war...):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<useUniqueVersions>false</useUniqueVersions>
</manifest>
</archive>
</configuration>
</plugin>
@Wayne: Do you need that I create a Jira ?
--
View this message in context:
http://maven.40175.n5.nabble.com/Issue-with-mvn3-timestamp-snapshots-being-downloaded-in-local-repository-tp3408008p3413753.html
Sent from the Maven - Users mailing list archive at Nabble.com.