You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2011/07/30 07:02:44 UTC

svn commit: r1152426 - /directory/apacheds/trunk/server-integ/pom.xml

Author: elecharny
Date: Sat Jul 30 05:02:43 2011
New Revision: 1152426

URL: http://svn.apache.org/viewvc?rev=1152426&view=rev
Log:
Fixed a Jenckins compilation failure on tests due to the lack of scope test dependency declaration of the core-api module

Modified:
    directory/apacheds/trunk/server-integ/pom.xml

Modified: directory/apacheds/trunk/server-integ/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/server-integ/pom.xml?rev=1152426&r1=1152425&r2=1152426&view=diff
==============================================================================
--- directory/apacheds/trunk/server-integ/pom.xml (original)
+++ directory/apacheds/trunk/server-integ/pom.xml Sat Jul 30 05:02:43 2011
@@ -48,6 +48,13 @@
     
     <dependency>
       <groupId>${project.groupId}</groupId>
+      <artifactId>apacheds-core-api</artifactId>
+      <classifier>tests</classifier>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>${project.groupId}</groupId>
       <artifactId>apacheds-core-integ</artifactId>
     </dependency>