You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2009/08/12 12:09:26 UTC

svn commit: r803429 - /directory/apacheds/trunk/server-unit/pom.xml

Author: akarasulu
Date: Wed Aug 12 10:09:26 2009
New Revision: 803429

URL: http://svn.apache.org/viewvc?rev=803429&view=rev
Log:
[DIRSERVER-1288] - used technique #1 in comments where we attach additional shaded jar with -all suffix to base file name.

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

Modified: directory/apacheds/trunk/server-unit/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/server-unit/pom.xml?rev=803429&r1=803428&r2=803429&view=diff
==============================================================================
--- directory/apacheds/trunk/server-unit/pom.xml (original)
+++ directory/apacheds/trunk/server-unit/pom.xml Wed Aug 12 10:09:26 2009
@@ -31,7 +31,10 @@
   <packaging>jar</packaging>  
 
   <description>
-    Unit testing framework for ApacheDS Server JNDI Provider
+    A JUnit 4.x based unit testing framework applying LDAP operations over the 
+    wire against an LDAP server. Right now the LDAP server is ApacheDS because
+    the start, stop and cleanup of the server are easily controlled.  This may
+    change in the future.
   </description>
 
   <dependencies>
@@ -88,6 +91,21 @@
   <build>
     <plugins>
       <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <shadedArtifactAttached>true</shadedArtifactAttached>
+              <shadedClassifierName>all</shadedClassifierName>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <excludes>