mirror of https://github.com/apache/maven.git
21 lines
673 B
XML
21 lines
673 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it0000</artifactId>
|
|
<description>The simplest of builds. We have one application class and one test
|
|
class. There are no resources, no source generation, no resource
|
|
generation and a the super model is employed to provide the build
|
|
information.</description>
|
|
<packaging>jar</packaging>
|
|
<version>1.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|