Fixed example-code for hibernate-bug HHH-9615
[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.1.0.Final</version>
38         </dependency>
39
40     </dependencies>
41
42
43   <build>
44     <plugins>
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-compiler-plugin</artifactId>
48         <version>2.0.2</version>
49         <configuration>
50           <source>1.7</source>
51           <target>1.7</target>
52           <encoding>utf8</encoding>
53           <showWarnings>true</showWarnings>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58
59 </project>