2005-05-02 05:17:30 -04:00
|
|
|
<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? -->
|
2005-05-12 13:10:21 -04:00
|
|
|
<version>1.0-alpha-1-SNAPSHOT</version>
|
2005-05-02 05:17:30 -04:00
|
|
|
<goals>
|
|
|
|
<goal>
|
|
|
|
<id>verify</id>
|
|
|
|
</goal>
|
|
|
|
</goals>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</model>
|