aboutsummaryrefslogtreecommitdiff
path: root/extensions/persist
diff options
context:
space:
mode:
authormcculls <mcculls@d779f126-a31b-0410-b53b-1d3aecad763e>2010-10-21 23:36:09 +0000
committermcculls <mcculls@d779f126-a31b-0410-b53b-1d3aecad763e>2010-10-21 23:36:09 +0000
commitbc7e1502d9e9a673b67fed3a459e714202585e8b (patch)
tree3e7c62a792a13a403234fd39818ba64104dfcd5f /extensions/persist
parentac4cdbe137274fd83a7e8e7100653f261618eb94 (diff)
downloadguice-bc7e1502d9e9a673b67fed3a459e714202585e8b.tar.gz
Issue 552: add buildable maven poms
git-svn-id: https://google-guice.googlecode.com/svn/trunk@1305 d779f126-a31b-0410-b53b-1d3aecad763e
Diffstat (limited to 'extensions/persist')
-rw-r--r--extensions/persist/pom.xml53
1 files changed, 38 insertions, 15 deletions
diff --git a/extensions/persist/pom.xml b/extensions/persist/pom.xml
index 1815bc01..92c8e9a6 100644
--- a/extensions/persist/pom.xml
+++ b/extensions/persist/pom.xml
@@ -1,36 +1,59 @@
-<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">
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
<modelVersion>4.0.0</modelVersion>
+
<parent>
<groupId>com.google.inject.extensions</groupId>
<artifactId>extensions-parent</artifactId>
<version>3.0-SNAPSHOT</version>
</parent>
+
<artifactId>guice-persist</artifactId>
- <packaging>jar</packaging>
- <name>Google Guice - Extension: Persist</name>
- <description>Tools for integrating with JPA</description>
- <!-- Note: this pom is for dependency management only. It will not build the project -->
+
+ <name>Google Guice - Extensions - Persist</name>
+
<dependencies>
<dependency>
- <groupId>com.google.inject</groupId>
- <artifactId>guice</artifactId>
- </dependency>
- <dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
</dependency>
-
- <!-- guice-persist depends on guice-servlet to implement request-scoped units of work. -->
<dependency>
- <groupId>com.google.inject.extensions</groupId>
- <artifactId>guice-servlet</artifactId>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.6.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-entitymanager</artifactId>
+ <version>3.4.0.GA</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hsqldb</groupId>
+ <artifactId>hsqldb-j5</artifactId>
+ <version>2.0.0</version>
+ <scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/DynamicFinderTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>