You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by cc...@apache.org on 2007/07/25 23:07:40 UTC

svn commit: r559605 - in /directory/daemon/branches/1.0: bootstrappers/pom.xml plugin/pom.xml pom.xml

Author: ccustine
Date: Wed Jul 25 14:07:39 2007
New Revision: 559605

URL: http://svn.apache.org/viewvc?view=rev&rev=559605
Log:
DIRSERVER-1008 - Cleaned up logging configurations to get rid of commons-logging and use more centralized config in parent poms.

Also renamed parent poms to provide unique project IDs for maven generated IDE projects.

Modified:
    directory/daemon/branches/1.0/bootstrappers/pom.xml
    directory/daemon/branches/1.0/plugin/pom.xml
    directory/daemon/branches/1.0/pom.xml

Modified: directory/daemon/branches/1.0/bootstrappers/pom.xml
URL: http://svn.apache.org/viewvc/directory/daemon/branches/1.0/bootstrappers/pom.xml?view=diff&rev=559605&r1=559604&r2=559605
==============================================================================
--- directory/daemon/branches/1.0/bootstrappers/pom.xml (original)
+++ directory/daemon/branches/1.0/bootstrappers/pom.xml Wed Jul 25 14:07:39 2007
@@ -3,7 +3,7 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.directory.daemon</groupId>
-    <artifactId>build</artifactId>
+    <artifactId>daemon-parent</artifactId>
     <version>1.0.3-SNAPSHOT</version>
   </parent>
   <artifactId>daemon-bootstrappers</artifactId>

Modified: directory/daemon/branches/1.0/plugin/pom.xml
URL: http://svn.apache.org/viewvc/directory/daemon/branches/1.0/plugin/pom.xml?view=diff&rev=559605&r1=559604&r2=559605
==============================================================================
--- directory/daemon/branches/1.0/plugin/pom.xml (original)
+++ directory/daemon/branches/1.0/plugin/pom.xml Wed Jul 25 14:07:39 2007
@@ -3,7 +3,7 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.directory.daemon</groupId>
-    <artifactId>build</artifactId>
+    <artifactId>daemon-parent</artifactId>
     <version>1.0.3-SNAPSHOT</version>
   </parent>
   <artifactId>daemon-plugin</artifactId>
@@ -43,6 +43,16 @@
       <groupId>izpack</groupId>
       <artifactId>standalone-compiler</artifactId>
       <version>3.8.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl104-over-slf4j</artifactId>
+      <version>1.4.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>nlog4j</artifactId>
+      <version>1.2.25</version>
     </dependency>
   </dependencies>
 </project>

Modified: directory/daemon/branches/1.0/pom.xml
URL: http://svn.apache.org/viewvc/directory/daemon/branches/1.0/pom.xml?view=diff&rev=559605&r1=559604&r2=559605
==============================================================================
--- directory/daemon/branches/1.0/pom.xml (original)
+++ directory/daemon/branches/1.0/pom.xml Wed Jul 25 14:07:39 2007
@@ -7,7 +7,7 @@
     <version>7</version>
   </parent>
   <groupId>org.apache.directory.daemon</groupId>
-  <artifactId>build</artifactId>
+  <artifactId>daemon-parent</artifactId>
   <name>Apache Directory Daemon</name>
   <packaging>pom</packaging>  
 
@@ -25,14 +25,26 @@
   </modules>
   <dependencies>
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.4.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl104-over-slf4j</artifactId>
+      <version>1.4.0</version>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>nlog4j</artifactId>
       <version>1.2.25</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
     </dependency>
     <dependency>
       <groupId>commons-daemon</groupId>