blob: ad04cbd7c555891e600c504a7293c02884540313 [file] [log] [blame]
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.mng2539</groupId>
<artifactId>mng-2539</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Maven Integration Test :: MNG-2539</name>
<description>
Verify that dependencies specified in plugins are also retrieved from ordinary/non-plugin repositories.
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-log-file</artifactId>
<version>2.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.its.mng2539</groupId>
<artifactId>mail</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
<configuration>
<logFile>target/log.txt</logFile>
</configuration>
<executions>
<execution>
<id>test</id>
<phase>validate</phase>
<goals>
<goal>reset</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>