1<?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 4 <modelVersion>4.0.0</modelVersion> 5 6 <parent> 7 <groupId>com.google.inject.extensions</groupId> 8 <artifactId>extensions-parent</artifactId> 9 <version>4.2.0</version> 10 </parent> 11 12 <artifactId>guice-persist</artifactId> 13 14 <name>Google Guice - Extensions - Persist</name> 15 16 <dependencies> 17 <dependency> 18 <groupId>org.hibernate.javax.persistence</groupId> 19 <artifactId>hibernate-jpa-2.0-api</artifactId> 20 <version>1.0.0.Final</version> 21 <scope>provided</scope> 22 </dependency> 23 <dependency> 24 <groupId>javax.servlet</groupId> 25 <artifactId>servlet-api</artifactId> 26 <version>2.5</version> 27 <scope>provided</scope> 28 </dependency> 29 <dependency> 30 <groupId>org.slf4j</groupId> 31 <artifactId>slf4j-simple</artifactId> 32 <version>1.6.1</version> 33 <scope>test</scope> 34 </dependency> 35 <dependency> 36 <groupId>org.hibernate</groupId> 37 <artifactId>hibernate-entitymanager</artifactId> 38 <version>4.1.7.Final</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> 46 </dependency> 47 <dependency> 48 <groupId>org.mockito</groupId> 49 <artifactId>mockito-core</artifactId> 50 <version>1.9.5</version> 51 <scope>test</scope> 52 </dependency> 53 <dependency> 54 <groupId>org.hamcrest</groupId> 55 <artifactId>hamcrest-library</artifactId> 56 <version>1.3</version> 57 <scope>test</scope> 58 </dependency> 59 <dependency> 60 <groupId>org.hamcrest</groupId> 61 <artifactId>hamcrest-core</artifactId> 62 <version>1.3</version> 63 <scope>test</scope> 64 </dependency> 65 </dependencies> 66 67 <build> 68 <plugins> 69 <plugin> 70 <artifactId>maven-jar-plugin</artifactId> 71 <configuration> 72 <archive> 73 <manifestEntries> 74 <Automatic-Module-Name>com.google.guice.extensions.persist</Automatic-Module-Name> 75 </manifestEntries> 76 </archive> 77 </configuration> 78 </plugin> 79 </plugins> 80 </build> 81</project> 82