Advanced Java Programming

Image
                          Advanced Java Programming Advanced Java Programming :-   Introduction to advance java   As most of us already know that if we want to make normal applications it  can be easily built using core Java concepts. But, when it we need to develop web applications, advanced Java fundamentals, like JSP, Servlets, JDBC etc. needed, so to add capabilities and features of the application advance java is essential for developers. Through the motive of this blog is to explain about Advanced Java, I will be giving you a complete insight into the fundamental concepts of Advance Java. Figure - 1.2 If you want to see complete video on this please  have a look the video below.                              Learn with Resh u Advanced Java Programming Course Figure - 1.3 I hope you understood by the slide why Advanced Java is essential. For your better understanding, I have divided this article int

Updating version numbers of modules in a multi-module Maven project

Updating version numbers of modules in a multi-module Maven project

Suppose you have a multi-module maven project. and you intend to version all modules together. So usually you update manually version in each of the module pom.xml as below



and the main parent module has the below configuration


To update  version  in pom.xml we need to first go to the directory where pom.xml file present in the command prompt and then use 

Use version:set from the versions-maven plugin:


Run this command t.ex

mvn versions:set -DnewVersion=8.3

It will adjust all pom versions, parent versions and dependency versions in a multi-module project.
If you made a mistake, do

mvn versions:revert
afterwards, or

mvn versions:commit
if you're happy with the results.


Thanks,
BestRegards
Reshu Mahoiya

Comments

Post a Comment

Please do not comment any spam link in the comment box

Popular posts from this blog

Advanced Java Programming