mirror of
https://github.com/apache/maven.git
synced 2025-02-06 10:09:04 +00:00
6dd94566ab
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
30 lines
992 B
XML
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>
|