mirror of https://github.com/apache/maven.git
29 lines
816 B
XML
29 lines
816 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-core-it0030</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<description>Test for dependencyManagement injection for parent-poms of transitively resolved poms.</description>
|
|
|
|
<modules>
|
|
<module>child-hierarchy</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-core-it0030-child-project1</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|