WIP:site
[hibernate4-maven-plugin] / src / it / h4mp-mod / 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-mod</artifactId>
6         <version>0.0.1-SNAPSHOT</version>
7         <packaging>war</packaging>
8         <name>h4m-mod</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         </dependencies>
48         <properties>
49                 <maven.compiler.source>1.7</maven.compiler.source>
50                 <maven.compiler.target>1.7</maven.compiler.target>
51                 <failOnMissingWebXml>false</failOnMissingWebXml>
52                 <version>@project.version@</version>
53         </properties>
54
55         <build>
56                 <plugins>
57                         <plugin>
58                                 <groupId>de.juplo</groupId>
59                                 <artifactId>hibernate-maven-plugin</artifactId>
60                                 <version>${version}</version>
61                                 <executions>
62                                         <execution>
63                                                 <goals>
64                                                         <goal>create</goal>
65                                                 </goals>
66                                         </execution>
67                                 </executions>
68                                 <configuration>
69                                         <execute>false</execute>
70                                         <envers>true</envers>
71                                         <format>true</format>
72                                         <delimiter>;</delimiter>
73                                         <dialect>org.hibernate.dialect.PostgreSQL9Dialect</dialect>
74                                 </configuration>
75                         </plugin>
76                 </plugins>
77         </build>
78 </project>