WIP
[hibernate4-maven-plugin] / src / it / dependency test / h4mp / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>de.cege</groupId>
5         <artifactId>h4mp</artifactId>
6         <version>0.0.1-SNAPSHOT</version>
7         <packaging>war</packaging>
8         <name>h4mp</name>
9
10         <dependencies>
11                 <dependency>
12                         <groupId>javax</groupId>
13                         <artifactId>javaee-api</artifactId>
14                         <version>7.0</version>
15                         <scope>provided</scope>
16                 </dependency>
17                 <dependency>
18                         <groupId>org.hibernate</groupId>
19                         <artifactId>hibernate-envers</artifactId>
20                         <version>4.3.5.Final</version>
21                 </dependency>
22
23                 <dependency>
24                         <groupId>junit</groupId>
25                         <artifactId>junit</artifactId>
26                         <version>4.8.2</version>
27                         <scope>test</scope>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.apache.derby</groupId>
31                         <artifactId>derby</artifactId>
32                         <version>10.10.1.1</version>
33                         <scope>test</scope>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.hibernate</groupId>
37                         <artifactId>hibernate-entitymanager</artifactId>
38                         <version>4.3.5.Final</version>
39                         <scope>test</scope>
40                 </dependency>
41                 <dependency>
42                         <groupId>org.slf4j</groupId>
43                         <artifactId>slf4j-simple</artifactId>
44                         <version>1.5.8</version>
45                         <scope>test</scope>
46                 </dependency>
47
48                 <dependency>
49                         <groupId>de.cege</groupId>
50                         <artifactId>dependent</artifactId>
51                         <version>0.0.1</version>
52                 </dependency>
53         </dependencies>
54         <properties>
55                 <maven.compiler.source>1.7</maven.compiler.source>
56                 <maven.compiler.target>1.7</maven.compiler.target>
57                 <failOnMissingWebXml>false</failOnMissingWebXml>
58         </properties>
59
60         <build>
61                 <plugins>
62                         <plugin>
63                                 <groupId>de.juplo</groupId>
64                                 <artifactId>hibernate4-maven-plugin</artifactId>
65                                 <version>@project.version@</version>
66                                 <executions>
67                                         <execution>
68                                                 <goals>
69                                                         <goal>export</goal>
70                                                 </goals>
71                                         </execution>
72                                 </executions>
73                                 <configuration>
74                                         <export>false</export>
75                                         <envers>true</envers>
76                                         <format>true</format>
77                                         <delimiter>;</delimiter>
78                                         <force>true</force>
79                                         <drop>false</drop>
80                                         <hibernateDialect>org.hibernate.dialect.PostgreSQL9Dialect</hibernateDialect>
81                                 </configuration>
82                         </plugin>
83                 </plugins>
84         </build>
85 </project>