<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>com.developpez</groupId>
	<artifactId>projet2</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<build>
	<plugins>
	<plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-dependency-plugin</artifactId>
		<version>2.0-alpha-4</version>
		<executions>
			<execution>
				<id>copy file</id>
				<phase>process-test-resources</phase>
				<goals>
					<goal>copy</goal>
				</goals>
				<configuration>
					<artifactItems>
						<artifactItem>
							<groupId>com.developpez</groupId>
							<artifactId>
								projet1
							</artifactId>
							<version>0.0.1-SNAPSHOT</version>							
							<overWrite>true</overWrite>
							<outputDirectory>
								${project.build.directory}/copied-files
							</outputDirectory>
						</artifactItem>
					</artifactItems>
				</configuration>
			</execution>
		</executions>
	</plugin>
	</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>com.developpez</groupId>
			<artifactId>projet1</artifactId>
			<version>0.0.1-SNAPSHOT</version>
		</dependency>
	</dependencies>
</project>
