mirror of https://github.com/apache/maven.git
29 lines
618 B
XML
29 lines
618 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-core-it0006</artifactId>
|
|
<version>1.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>test</type>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<preGoals>
|
|
<preGoal>
|
|
<name>compiler:compile</name>
|
|
<attain>clean:clean</attain>
|
|
</preGoal>
|
|
</preGoals>
|
|
|
|
<postGoals>
|
|
<postGoal>
|
|
<name>compiler:compile</name>
|
|
<attain>jar:jar</attain>
|
|
</postGoal>
|
|
</postGoals>
|
|
</project>
|