You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2010/06/05 18:36:07 UTC

svn commit: r951741 - in /directory/apacheds/trunk: ./ jdbm-partition/ xdbm-partition/ xdbm-partition/src/main/java/org/apache/directory/server/xdbm/ xdbm-partition/src/test/java/org/apache/directory/server/xdbm/

Author: seelmann
Date: Sat Jun  5 16:36:07 2010
New Revision: 951741

URL: http://svn.apache.org/viewvc?rev=951741&view=rev
Log:
Move StoreUtils to src/test/java, it is only used in tests.

Added:
    directory/apacheds/trunk/xdbm-partition/src/test/java/org/apache/directory/server/xdbm/StoreUtils.java
      - copied unchanged from r951689, directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/StoreUtils.java
Removed:
    directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/StoreUtils.java
Modified:
    directory/apacheds/trunk/jdbm-partition/pom.xml
    directory/apacheds/trunk/pom.xml
    directory/apacheds/trunk/xdbm-partition/pom.xml

Modified: directory/apacheds/trunk/jdbm-partition/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/jdbm-partition/pom.xml?rev=951741&r1=951740&r2=951741&view=diff
==============================================================================
--- directory/apacheds/trunk/jdbm-partition/pom.xml (original)
+++ directory/apacheds/trunk/jdbm-partition/pom.xml Sat Jun  5 16:36:07 2010
@@ -54,6 +54,13 @@
     </dependency>
     
     <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>apacheds-xdbm-partition</artifactId>
+      <classifier>tests</classifier>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
       <groupId>commons-lang</groupId>
       <artifactId>commons-lang</artifactId>
     </dependency>

Modified: directory/apacheds/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/pom.xml?rev=951741&r1=951740&r2=951741&view=diff
==============================================================================
--- directory/apacheds/trunk/pom.xml (original)
+++ directory/apacheds/trunk/pom.xml Sat Jun  5 16:36:07 2010
@@ -387,6 +387,13 @@
       
       <dependency>
         <groupId>${project.groupId}</groupId>
+        <artifactId>apacheds-xdbm-partition</artifactId>
+        <version>${project.version}</version>
+        <classifier>tests</classifier>
+      </dependency>
+      
+      <dependency>
+        <groupId>${project.groupId}</groupId>
         <artifactId>apacheds-xdbm-tools</artifactId>
         <version>${project.version}</version>
       </dependency>

Modified: directory/apacheds/trunk/xdbm-partition/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/xdbm-partition/pom.xml?rev=951741&r1=951740&r2=951741&view=diff
==============================================================================
--- directory/apacheds/trunk/xdbm-partition/pom.xml (original)
+++ directory/apacheds/trunk/xdbm-partition/pom.xml Sat Jun  5 16:36:07 2010
@@ -85,4 +85,20 @@
       <artifactId>shared-ldap-schema-loader</artifactId>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>