try to ensure consumer archetype will build with an empty repo so force local download of antrun plugin

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1583884 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2014-04-02 05:39:19 +00:00
parent 554c7419aa
commit 849fcd958c
1 changed files with 20 additions and 0 deletions

View File

@ -105,6 +105,26 @@
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>package</id>
<phase>package</phase>
<configuration>
<tasks>
<echo>
Just ensure plugin is downloaded in local repo for it test
</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>