You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ka...@apache.org on 2010/08/30 21:13:08 UTC

svn commit: r990903 - /directory/apacheds/trunk/core-api/pom.xml

Author: kayyagari
Date: Mon Aug 30 19:13:08 2010
New Revision: 990903

URL: http://svn.apache.org/viewvc?rev=990903&view=rev
Log:
o added dependency on ehacache-core 

Modified:
    directory/apacheds/trunk/core-api/pom.xml

Modified: directory/apacheds/trunk/core-api/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-api/pom.xml?rev=990903&r1=990902&r2=990903&view=diff
==============================================================================
--- directory/apacheds/trunk/core-api/pom.xml (original)
+++ directory/apacheds/trunk/core-api/pom.xml Mon Aug 30 19:13:08 2010
@@ -35,6 +35,10 @@
     Contains interfaces and helper classes that are part of the ApacheDS Core API.
   </description>
 
+  <properties>
+    <ehcache-version>2.2.0</ehcache-version>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.directory.junit</groupId>
@@ -116,6 +120,13 @@
       <groupId>org.apache.directory.client.ldap</groupId>
       <artifactId>ldap-client-api</artifactId>
     </dependency>
+    
+    <dependency>
+       <groupId>net.sf.ehcache</groupId>
+       <artifactId>ehcache-core</artifactId>
+       <version>${ehcache-version}</version>
+   </dependency>
+    
   </dependencies>
 
   <build>