I create a parent pom which contain the repository url and the common plugin, all my pom are derived from this pom, my define like this: > > <parent> > <groupId>com.mycompany</groupId> > <artifactId>parent</artifactId> > <version> LATEST</version>
</parent> I want to define the version is LATEST so all the project can get the latest parent pom, but the maven dont allow me to do this, why can define the dependent artifact version to be LATEST and cant define the parent pom?
