1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
6 <groupId>org.wamblee</groupId>
7 <artifactId>wamblee-utils</artifactId>
8 <version>0.2-SNAPSHOT</version>
11 <modelVersion>4.0.0</modelVersion>
12 <groupId>org.wamblee</groupId>
13 <artifactId>wamblee-hibernate-jpa</artifactId>
14 <packaging>jar</packaging>
15 <name>wamblee.org hibernate-jpa library (bundling the required dependencies)</name>
16 <url>http://wamblee.org</url>
19 <groupId>org.hibernate</groupId>
20 <artifactId>hibernate</artifactId>
21 <version>3.2.5.ga</version>
24 <groupId>javax.transaction</groupId>
25 <artifactId>jta</artifactId>
29 <!-- This dependency should probably move to a more generic JPA
32 <groupId>javax.transaction</groupId>
33 <artifactId>transaction-api</artifactId>
34 <version>1.1</version>
38 <groupId>org.hibernate</groupId>
39 <artifactId>hibernate-entitymanager</artifactId>
40 <version>3.3.1.ga</version>
43 <groupId>javax.persistence</groupId>
44 <artifactId>persistence-api</artifactId>
45 <version>1.0</version>
46 <scope>provided</scope>
49 <groupId>concurrent</groupId>
50 <artifactId>concurrent</artifactId>
51 <version>1.3.4</version>
54 <groupId>oro</groupId>
55 <artifactId>oro</artifactId>
56 <version>2.0.6</version>