my jar in maven repository snapshot consists of time-stamp.
e.g.: bigdata-1.1-20160401.022812.jar
. during jenkins build script looking bigdata-1.1.jar
because has timestamp, build throwing error saying bigdata-1.1.jar
not found.
what can ignore timestamp while looking snapshot jar?
you can't ignore timestamp. can select latest version of jar replacing version tag in pom file :
<version>latest</version>
Comments
Post a Comment