I have a bunch of projects like:
project1
project2
project3
........
project111
Each project compiled in jar: project-1.1.1.1.jar, ….
Does it possible in parent folder add pom.xml so I can define version 1 time for all projects?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you omit
<version/>it inherits from the parent. However, the<parent/>element must contain a<version/>for the parent, so the version must occur in every single POM, but only once.