Added example-code for hibernate-bug HHH-9615 as additional test-case
[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
28         <dependency>
29             <groupId>junit</groupId>
30             <artifactId>junit</artifactId>
31             <version>4.11</version>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.hibernate</groupId>
36             <artifactId>hibernate-entitymanager</artifactId>
37             <version>5.0.0-SNAPSHOT</version>
38         </dependency>
39
40     </dependencies>
41
42
43
44 </project>