Author: vsiveton
Date: Tue Mar 10 10:18:45 2009
New Revision: 752032
URL: http://svn.apache.org/viewvc?rev=752032&view=rev
Log:
o added undeclared dependencies given by mvn dependency:analyze
o added aopalliance dependency which is used by guice
Modified:
incubator/shindig/trunk/java/samples/pom.xml
Modified: incubator/shindig/trunk/java/samples/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/samples/pom.xml?rev=752032&r1=752031&r2=752032&view=diff
==============================================================================
--- incubator/shindig/trunk/java/samples/pom.xml (original)
+++ incubator/shindig/trunk/java/samples/pom.xml Tue Mar 10 10:18:45 2009
@@ -80,6 +80,10 @@
<artifactId>guice</artifactId>
</dependency>
<dependency>
+ <groupId>aopalliance</groupId>
+ <artifactId>aopalliance</artifactId>
+ </dependency>
+ <dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
@@ -104,9 +108,17 @@
<groupId>commons-collections</groupId>
</dependency>
<dependency>
+ <artifactId>commons-io</artifactId>
+ <groupId>commons-io</groupId>
+ </dependency>
+ <dependency>
<groupId>findbugs</groupId>
<artifactId>annotations</artifactId>
</dependency>
+ <dependency>
+ <groupId>com.google.collections</groupId>
+ <artifactId>google-collections</artifactId>
+ </dependency>
<!-- Hibernate -->
<dependency>
@@ -129,6 +141,11 @@
<artifactId>hibernate-tools</artifactId>
<version>3.2.0.ga</version>
</dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>ejb3-persistence</artifactId>
+ <version>1.0.1.GA</version>
+ </dependency>
<!-- test -->
<dependency>