blob: 1ce48dc91af39b24ba630bdc8d58d395179f3114 [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>
<parent>
<relativePath>..</relativePath>
<groupId>eclipselink.example.jpa</groupId>
<artifactId>employee.parent</artifactId>
<version>2.4.2-SNAPSHOT</version>
</parent>
<artifactId>employee.web-js</artifactId>
<packaging>war</packaging>
<name>Employee Web JavaScript App</name>
<dependencies>
<dependency>
<groupId>${eclipselink.groupid}</groupId>
<artifactId>org.eclipse.persistence.jpars</artifactId>
<version>${eclipselink.version}</version>
</dependency>
<dependency>
<groupId>eclipselink.example.jpa</groupId>
<artifactId>employee.model</artifactId>
<version>2.4.2-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<finalName>employee.web-js</finalName>
</build>
</project>