Maven version with a property
问题 I have big Maven (Tycho) project witch about 400 plug-ins. We have specified version of application in each POM file. Is there a way how to specify the version for all POM:s only on one place? I would expect some think like: <properties> <buildVersion>1.1.2-SNAPSHOT</buildVersion> </properties> .... <version>${buildVersion}</version> We have parent pom.xml : <modelVersion>4.0.0</modelVersion> <groupId>company</groupId> <artifactId>build.parent</artifactId> <version>1.1.2-SNAPSHOT</version>