blob: 541b029271f214622929460fac080fa54c0cbba9 [file] [log] [blame]
mccullsbc7e1502010-10-21 23:36:09 +00001<?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
sberlinb0852382010-08-01 19:55:08 +00004 <modelVersion>4.0.0</modelVersion>
mccullsbc7e1502010-10-21 23:36:09 +00005
sberlinb0852382010-08-01 19:55:08 +00006 <parent>
7 <groupId>com.google.inject.extensions</groupId>
8 <artifactId>extensions-parent</artifactId>
9 <version>3.0-SNAPSHOT</version>
10 </parent>
mccullsbc7e1502010-10-21 23:36:09 +000011
sberlinb0852382010-08-01 19:55:08 +000012 <artifactId>guice-persist</artifactId>
mccullsbc7e1502010-10-21 23:36:09 +000013
14 <name>Google Guice - Extensions - Persist</name>
15
sberlinb0852382010-08-01 19:55:08 +000016 <dependencies>
17 <dependency>
sberlinb0852382010-08-01 19:55:08 +000018 <groupId>javax.persistence</groupId>
19 <artifactId>persistence-api</artifactId>
20 <version>1.0</version>
mcculls8846db32010-11-04 02:22:00 +000021 <scope>provided</scope>
sberlinb0852382010-08-01 19:55:08 +000022 </dependency>
23 <dependency>
24 <groupId>javax.servlet</groupId>
25 <artifactId>servlet-api</artifactId>
mccullsbc7e1502010-10-21 23:36:09 +000026 <version>2.5</version>
mcculls8846db32010-11-04 02:22:00 +000027 <scope>provided</scope>
28 </dependency>
29 <dependency>
30 <groupId>org.slf4j</groupId>
31 <artifactId>slf4j-api</artifactId>
32 <version>1.6.1</version>
33 <scope>test</scope>
mccullsbc7e1502010-10-21 23:36:09 +000034 </dependency>
35 <dependency>
36 <groupId>org.hibernate</groupId>
37 <artifactId>hibernate-entitymanager</artifactId>
38 <version>3.4.0.GA</version>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.hsqldb</groupId>
43 <artifactId>hsqldb-j5</artifactId>
44 <version>2.0.0</version>
45 <scope>test</scope>
sberlinb0852382010-08-01 19:55:08 +000046 </dependency>
47 </dependencies>
mccullsbc7e1502010-10-21 23:36:09 +000048
sberlinb0852382010-08-01 19:55:08 +000049</project>