I don't know why you have to explicitly reference the parent pom file.
What I do usually is have the parent pom as a project like so:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.blah.commons</groupId>
<artifactId>project-standards</artifactId>
<name>Common Standards</name>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
...
Note the <packaging>pom</packaging> element
and in each project/module, would depend on the standards pom.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>com.blah.commons</groupId>
<artifactId>project-standards</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.blah.project</groupId>
<artifactId>xyz-core</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>project xyz core module</name>
...
Note the <parent> element.