Brett Leslie Porter 6dd94566ab PR: MNG-348
Submitted by:	Vincent Massol
Reviewed by:	Brett Porter (applied with some changes)
Add a verifier plugin, for doing integration tests


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@165612 13f79535-47bb-0310-9956-ffa450edef68
2005-05-02 09:17:30 +00:00

30 lines
992 B
XML

<model>
<parent>
<artifactId>maven-verifier-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>1.0-alpha-2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>maven-verifier-plugin-test</artifactId>
<name>Maven Verifier Plugin Test</name>
<version>1.0-alpha-2-SNAPSHOT</version>
<dependencies/>
<build>
<plugins>
<plugin>
<artifactId>maven-verifier-plugin</artifactId>
<!-- Problem here: if I specify a version, it won't build if the verifier plugin is not
in the remote repo. If I don't specify a version, it fails...
Now, even if I have built the verifier plugin locally m2 insist for downloading it
from the remote repo. Why is that? -->
<version>1.0-alpha-2-SNAPSHOT</version>
<goals>
<goal>
<id>verify</id>
</goal>
</goals>
</plugin>
</plugins>
</build>
</model>