maven/maven-core-it/it0029/child-project/pom.xml

30 lines
764 B
XML
Raw Normal View History

<model>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0029</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0029-child</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</model>