blob: a1a2a1e75270cc8280d8f7ebe9f619739fd469b5 [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>
Stuart McCulloch7f6a1362012-08-31 10:14:56 +01009 <version>3.0.1-SNAPSHOT</version>
sberlinb0852382010-08-01 19:55:08 +000010 </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>
mcculls2c3076b2010-11-04 02:36:40 +000031 <artifactId>slf4j-simple</artifactId>
32 <version>1.6.1</version>
33 <scope>test</scope>
34 </dependency>
35 <dependency>
mccullsbc7e1502010-10-21 23:36:09 +000036 <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
mccullsaacb4842010-11-04 22:51:25 +000049 <build>
50 <plugins>
51 <plugin>
52 <artifactId>maven-surefire-plugin</artifactId>
53 <configuration>
54 <forkMode>never</forkMode>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59
sberlinb0852382010-08-01 19:55:08 +000060</project>