Fixed the akquisition of a database-connection, if one is needed
[hibernate4-maven-plugin] / src / it / hibernate-lob-converter-bug / 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     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>io.blep</groupId>
8     <artifactId>hibernate-lob-converter-bug</artifactId>
9     <version>1.0-SNAPSHOT</version>
10     <repositories>
11         <repository>
12             <id>jboss-maven2-release-repository</id>
13             <name>JBoss</name>
14             <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
15             <snapshots>
16                 <enabled>true</enabled>
17             </snapshots>
18         </repository>
19     </repositories>
20
21     <dependencies>
22         <dependency>
23             <groupId>com.h2database</groupId>
24             <artifactId>h2</artifactId>
25             <version>1.3.168</version>
26         </dependency>
27         <dependency>
28             <groupId>org.hibernate</groupId>
29             <artifactId>hibernate-entitymanager</artifactId>
30             <version>5.1.0.Final</version>
31         </dependency>
32     </dependencies>
33
34
35   <build>
36     <plugins>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-compiler-plugin</artifactId>
40         <version>2.0.2</version>
41         <configuration>
42           <source>1.7</source>
43           <target>1.7</target>
44           <encoding>utf8</encoding>
45           <showWarnings>true</showWarnings>
46         </configuration>
47       </plugin>
48       <plugin>
49         <groupId>de.juplo</groupId>
50         <artifactId>hibernate-maven-plugin</artifactId>
51         <version>@project.version@</version>
52         <configuration>
53           <execute>false</execute>
54           <format>true</format>
55           <scanTestClasses>true</scanTestClasses>
56         </configuration>
57         <executions>
58           <execution>
59             <id>create</id>
60             <goals>
61               <goal>create</goal>
62             </goals>
63           </execution>
64         </executions>
65       </plugin>
66     </plugins>
67   </build>
68
69 </project>