Author: brianf
Date: Sun Mar 11 20:05:47 2007
New Revision: 517088

URL: http://svn.apache.org/viewvc?view=rev&rev=517088
Log:
MDEP-61 - added includeScope IT.

Added:
    maven/plugins/trunk/maven-dependency-plugin/src/it/mdep-61/
    maven/plugins/trunk/maven-dependency-plugin/src/it/mdep-61/pom.xml

Added: maven/plugins/trunk/maven-dependency-plugin/src/it/mdep-61/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/it/mdep-61/pom.xml?view=auto&rev=517088
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/it/mdep-61/pom.xml (added)
+++ maven/plugins/trunk/maven-dependency-plugin/src/it/mdep-61/pom.xml Sun Mar 
11 20:05:47 2007
@@ -0,0 +1,53 @@
+<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>
+       <name>Copy Dependencies IT</name>
+       <groupId>org.apache.maven.plugins.maven-dependency-plugin-it</groupId>
+       <artifactId>mdep-61-it</artifactId>
+       <version>1</version>
+       <packaging>jar</packaging>
+       <dependencies>
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <version>4.1</version>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>ant</groupId>
+                       <artifactId>ant</artifactId>
+                       <version>1.6.5</version>
+                       <scope>compile</scope>
+               </dependency>
+       </dependencies>
+       <build>
+               <defaultGoal>generate-sources</defaultGoal>
+               <plugins>
+                       <plugin>
+                       <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-dependency-plugin</artifactId>
+                             <executions>
+                                   <execution>
+                                       <id>compile-only</id>
+                                                               
<phase>generate-sources</phase>
+                                       <goals>
+                                           <goal>copy-dependencies</goal>
+                                       </goals>
+                                       <configuration>
+                                                                       
<includeScope>compile</includeScope>
+                                       </configuration>
+                                   </execution>
+                                                       <execution>
+                                       <id>test</id>
+                                                               
<phase>generate-sources</phase>
+                                       <goals>
+                                           <goal>copy-dependencies</goal>
+                                       </goals>
+                                       <configuration>
+                                                                       
<includeScope>test</includeScope>
+                                       </configuration>
+                                   </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+</project>


Reply via email to