7a9922e4843487e56c1b37a1af04ed96d1f02fa9
[hibernate4-maven-plugin] / src / it / properties / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>de.juplo</groupId>
5   <artifactId>hibernate4-properties-test</artifactId>
6   <name>Hibernate 4 Test - Dialect in properties-file</name>
7   <version>0.1-SNAPSHOT</version>
8   <packaging>jar</packaging>
9   <properties>
10     <!--hibernate.skip>false</hibernate.skip-->
11   </properties>
12   <dependencies>
13     <dependency>
14       <groupId>org.hibernate</groupId>
15       <artifactId>hibernate-core</artifactId>
16       <version>4.3.0.Final</version>
17     </dependency>
18   </dependencies>
19   <build>
20     <plugins>
21       <plugin>
22         <groupId>org.apache.maven.plugins</groupId>
23         <artifactId>maven-compiler-plugin</artifactId>
24         <version>2.0.2</version>
25         <configuration>
26           <source>1.7</source>
27           <target>1.7</target>
28           <encoding>utf8</encoding>
29           <showWarnings>true</showWarnings>
30         </configuration>
31       </plugin>
32       <!--  Generate database schema files -->
33       <plugin>
34         <groupId>de.juplo</groupId>
35         <artifactId>hibernate-maven-plugin</artifactId>
36         <version>@project.version@</version>
37         <configuration>
38           <!-- Gnerate schema only, no DB connection needed -->
39           <export>false</export>
40         </configuration>
41         <executions>
42           <execution>
43             <goals>
44               <goal>create</goal>
45             </goals>
46           </execution>
47         </executions>
48       </plugin>
49     </plugins>
50   </build>
51 </project>