Chapter 6 - pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.apress.javaee6</groupId>
<artifactId>chapter06</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Chapter 06 - EJB</name>
<parent>
<groupId>com.apress.javaee6</groupId>
<artifactId>chapters</artifactId>
<version>1.0</version>
</parent>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>${eclipselink-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.ejb</artifactId>
<version>${glassfish-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.ejb</groupId>
<artifactId>ejb-container</artifactId>
<version>${glassfish-version}</version>
<scope>test</scope>
</dependency>
<!--<dependency>-->
<!--<groupId>org.glassfish.embedded</groupId>-->
<!--<artifactId>glassfish-embedded-all</artifactId>-->
<!--<version>${glassfish-version}</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${plugin-jar-version}</version>
</plugin>
</plugins>
</build>
</project>





