Advertisement
javapapo

ejb-domain

May 18th, 2014
5,865
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.77 KB | None | 0 0
  1. <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">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <parent>
  4.     <groupId>gr.javapapo</groupId>
  5.     <artifactId>sample-parent</artifactId>
  6.     <version>0.0.1-SNAPSHOT</version>
  7.   </parent>
  8.   <artifactId>sample-domain</artifactId>
  9.   <packaging>ejb</packaging>
  10.   <name>sample-domain</name>
  11.   <description>JPA entities for our project - domain model</description>
  12.   <build>
  13.     <finalName>${project.artifactId}</finalName>
  14.   </build>
  15.   <dependencies>
  16.         <dependency>
  17.             <groupId>javax</groupId>
  18.             <artifactId>javaee-api</artifactId>
  19.         </dependency>
  20.     </dependencies>
  21. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement