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?
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.