You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2011/03/08 17:18:24 UTC

svn commit: r1079414 - /directory/shared/trunk/distribution/pom.xml

Author: pamarcelot
Date: Tue Mar  8 16:18:23 2011
New Revision: 1079414

URL: http://svn.apache.org/viewvc?rev=1079414&view=rev
Log:
Fix for DIRSHARED-100 (Fix outstanding build issues).
Added missing log4j artifact to the final distribution.

Modified:
    directory/shared/trunk/distribution/pom.xml

Modified: directory/shared/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/distribution/pom.xml?rev=1079414&r1=1079413&r2=1079414&view=diff
==============================================================================
--- directory/shared/trunk/distribution/pom.xml (original)
+++ directory/shared/trunk/distribution/pom.xml Tue Mar  8 16:18:23 2011
@@ -52,11 +52,15 @@
                   <goal>copy</goal>
                 </goals>
                 <configuration>
+                  <outputDirectory>${project.build.directory}/additional-jars</outputDirectory>
                   <artifactItems>
                     <artifactItem>
                       <groupId>org.slf4j</groupId>
                       <artifactId>slf4j-log4j12</artifactId>
-                      <outputDirectory>${project.build.directory}/additional-jars</outputDirectory>
+                    </artifactItem>
+                    <artifactItem>
+                      <groupId>log4j</groupId>
+                      <artifactId>log4j</artifactId>
                     </artifactItem>
                   </artifactItems>
                 </configuration>