Added additional integration test provided by Fabio Heer
[hibernate4-maven-plugin] / src / it / multimodule / ejb / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>hibernate-maven-plugin</artifactId>
7         <groupId>ch.dvbern.demo</groupId>
8         <version>0.1.0-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>server</artifactId>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <artifactId>maven-ejb-plugin</artifactId>
18                 <configuration>
19                     <ejbVersion>3.2</ejbVersion>
20                 </configuration>
21             </plugin>
22         </plugins>
23     </build>
24
25     <dependencies>
26         <dependency>
27             <groupId>ch.dvbern.demo</groupId>
28             <artifactId>shared</artifactId>
29             <version>0.1.0-SNAPSHOT</version>
30         </dependency>
31
32         <dependency>
33             <groupId>org.hibernate</groupId>
34             <artifactId>hibernate-core</artifactId>
35             <scope>provided</scope>
36             <exclusions>
37                 <exclusion>
38                     <groupId>dom4j</groupId>
39                     <artifactId>dom4j</artifactId>
40                 </exclusion>
41             </exclusions>
42         </dependency>
43         <dependency>
44             <groupId>org.hibernate</groupId>
45             <artifactId>hibernate-entitymanager</artifactId>
46             <version>${version.hibernate}</version>
47         </dependency>
48         <dependency>
49             <groupId>javax.enterprise</groupId>
50             <artifactId>cdi-api</artifactId>
51             <scope>provided</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.jboss.spec.javax.ejb</groupId>
55             <artifactId>jboss-ejb-api_3.2_spec</artifactId>
56             <scope>provided</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.jboss.spec.javax.annotation</groupId>
60             <artifactId>jboss-annotations-api_1.2_spec</artifactId>
61             <scope>provided</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.hibernate.javax.persistence</groupId>
65             <artifactId>hibernate-jpa-2.1-api</artifactId>
66             <scope>provided</scope>
67         </dependency>
68     </dependencies>
69 </project>