mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
a9f174c834
This fixed a couple of bugs along the way. One change that this has brought to bear from the document is you now must specify a goal for it to be bound to the LC (see it0008) git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@191285 13f79535-47bb-0310-9956-ffa450edef68
31 lines
731 B
XML
31 lines
731 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it0008</artifactId>
|
|
<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>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-core-it-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<goals>
|
|
<goal>
|
|
<id>touch</id>
|
|
</goal>
|
|
</goals>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</model>
|