I have a parent project with 5 children having also dependencies between each other. I used both inheritence with <parent>
element in the children pom.xml and aggregation with <module>
element in the parent.
My parent pom looks like this:
<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.domain</groupId>
<artifactId>Parent</artifactId>
<packaging>pom</packaging>
<version>RELEASE</version>
<name>Parent</name>
<modules>
<module>../Child1</module>
<module>../Child2</module>
<module>../Child3</module>
<module>../Child4</module>
<module>../Child5</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.domain</groupId>
<artifactId>Child1</artifactId>
<version>RELEASE</version>
</dependency>
<dependency>
<groupId>com.domain</groupId>
<artifactId>Child2</artifactId>
<version>RELEASE</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Child3 pom looks like this:
<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.domain</groupId>
<artifactId>Child3</artifactId>
<name>Child3</name>
<packaging>war</packaging>
<parent>
<artifactId>Parent</artifactId>
<groupId>com.domain</groupId>
<version>RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>com.domain</groupId>
<artifactId>Child1</artifactId>
</dependency>
<dependency>
<groupId>com.domain</groupId>
<artifactId>Child2</artifactId>
</dependency>
</dependencies>
</project>
Everything works fine when I run mvn install
on Parent or Child1. But when I run it on Child3 I get the following errors:
[INFO] Failed to resolve artifact.
Missing:
----------
1) com.domain:Child1:jar:RELEASE
...
2) com.domain:Child2:jar:RELEASE
What's wrong with my set-up?