Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i use nexus to assign version numbers for my local jars.. Can we do that?

share|improve this question

2 Answers

up vote 3 down vote accepted

Version numbering is specified in your POM.

share|improve this answer
... your pom.xml used by maven. When you deploy or release using maven, the version information is attatched to the jar's name and meta data. – Peter Lawrey Feb 22 '11 at 17:24
yes but it's always 1.0 ? – Praneel Feb 22 '11 at 17:27
Aren't you using mvn release:prepare and mvn release:perform ? Neither 1.0-SNAPSHOT ? – khmarbaise Feb 22 '11 at 18:38

The ivy module has a buildnumber task that caculates based on what was previously published to Nexus.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.