mirror of
https://github.com/apache/maven.git
synced 2025-02-06 18:18:48 +00:00
51489cd0fd
allow the addition of <dependencies> inside a <plugin> element to introduce plugin specific extensions. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293557 13f79535-47bb-0310-9956-ffa450edef68
38 lines
898 B
XML
38 lines
898 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>test-components</artifactId>
|
|
<groupId>test</groupId>
|
|
<version>0.1</version>
|
|
</parent>
|
|
|
|
<groupId>test</groupId>
|
|
<artifactId>test-component-c</artifactId>
|
|
<version>0.1</version>
|
|
<name>Test Component C</name>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>test</groupId>
|
|
<artifactId>test-plugin</artifactId>
|
|
<version>0.1</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
<artifactId>wagon-ftp</artifactId>
|
|
<version>1.0-alpha-4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|