You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "S V Mohana Rao (JIRA)" <ji...@apache.org> on 2015/12/15 14:20:46 UTC

[jira] [Created] (MDEP-513) Should have the capability of copying to file(s) by not maintaining folder structure.

S V Mohana Rao created MDEP-513:
-----------------------------------

             Summary: Should have the capability of copying to file(s) by not maintaining folder structure. 
                 Key: MDEP-513
                 URL: https://issues.apache.org/jira/browse/MDEP-513
             Project: Maven Dependency Plugin
          Issue Type: Improvement
          Components: unpack
    Affects Versions: 2.10
         Environment: windows 
            Reporter: S V Mohana Rao


<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>unpack</id>
						<phase>process-resources</phase>
						<goals>
							<goal>unpack</goal>
						</goals>
						<configuration>
							<artifactItems>
								<!-- To copy some.properties -->
								<artifactItem>
									<groupId>com.company.domain.enterprise.module.submodule</groupId>
									<artifactId>module-deployment-gen-config</artifactId>
									<!-- Remove this version once pointing dpkgs -->
									<version>${project.version}</version>
									<overWrite>false</overWrite>
									<outputDirectory>${basedir}/src/test/resources</outputDirectory>
									<includes>**/acl/acl.properties</includes>
									<excludes>META-INF/**</excludes>
								</artifactItem>
							</artifactItems>
						</configuration>
					</execution>
				</executions>
			</plugin>



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)