Maven: property substitution not done for /project/version tag of pom?
问题 http://maven.apache.org/pom.html#Properties says property "values are accessible anywhere within a POM". Should this read "are accessible in most places within a POM"? I can specify the version of a dependency no problem like so: <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> But what about the version of the project itself like so: <project xmlns="http://maven.apache.org/POM/4.0.0" ...> <modelVersion