blob: e4c069bc5363bc284f8a7818723c9e19e9348f34 [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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>Polyglot PU Client</name>
<artifactId>client</artifactId>
<parent>
<relativePath>..\pom.xml</relativePath>
<groupId>eclipselink.example.polyglot</groupId>
<artifactId>parent</artifactId>
<version>2.4.2-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>eclipselink.example.polyglot</groupId>
<artifactId>composite-pu</artifactId>
<version>2.4.2-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>