Do not limit your challenges.. Challenge your limits

BTemplates.com

Search This Blog

Powered by Blogger.

About Me

My photo
kathmandu, Bagmati, Nepal
I am Software developer based on Nepal.I have started coding since mid of 1995 with QBasic.My interest in software development covers a broad range of technologies from assembly to the Microsoft .NET platform to Java, Linux to Windows, Windows Mobile to Android, desktop to web to mobile, and many others. But from 2007 I am just working on Java mainly working on Java EE platform and decided just to go with it. I really like to learn new stuff and share things with others which is my main objective in creating this blog.

ArchUnit : Java architecture test library

Finally I have found the required library which will enforce architecture patterns . ArchUnit  . Currently I am exploring it and will upd...

Tuesday, March 24, 2015

Version management with multi module maven project


In order to manage version in maven multi module project , need to do following step :

1. Add version plugin Maven Version Plugin

 <plugin>  
         <groupId>org.codehaus.mojo</groupId>  
         <artifactId>versions-maven-plugin</artifactId>  
         <version>2.1</version>  
  </plugin>  
2. From terminal use below command to set version


mvn versions:set -DnewVersion=2.1.1



3. Save Changes using below command



    mvn versions:commit