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 2011/01/02 23:24:15 UTC

svn commit: r1054476 - in /directory/shared/branches/alex_refactoring: ldap-model/ ldap-model/pom.xml ldap/pom.xml pom.xml

Author: akarasulu
Date: Sun Jan  2 22:24:15 2011
New Revision: 1054476

URL: http://svn.apache.org/viewvc?rev=1054476&view=rev
Log:
creating ldap-model project for domain model objects

Added:
    directory/shared/branches/alex_refactoring/ldap-model/
      - copied from r1054430, directory/shared/branches/alex_refactoring/ldap/
Modified:
    directory/shared/branches/alex_refactoring/ldap-model/pom.xml
    directory/shared/branches/alex_refactoring/ldap/pom.xml
    directory/shared/branches/alex_refactoring/pom.xml

Modified: directory/shared/branches/alex_refactoring/ldap-model/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/ldap-model/pom.xml?rev=1054476&r1=1054430&r2=1054476&view=diff
==============================================================================
--- directory/shared/branches/alex_refactoring/ldap-model/pom.xml (original)
+++ directory/shared/branches/alex_refactoring/ldap-model/pom.xml Sun Jan  2 22:24:15 2011
@@ -25,10 +25,10 @@
     <version>0.9.20-SNAPSHOT</version>
   </parent>
   
-  <artifactId>shared-ldap</artifactId>
-  <name>Apache Directory Shared LDAP</name>
+  <artifactId>shared-ldap-model</artifactId>
+  <name>Apache Directory Shared LDAP Model</name>
 
-  <description>Common LDAP packages used by clients and servers</description>
+  <description>The LDAP domain model API</description>
 
   <dependencies>
     <dependency>

Modified: directory/shared/branches/alex_refactoring/ldap/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/ldap/pom.xml?rev=1054476&r1=1054475&r2=1054476&view=diff
==============================================================================
--- directory/shared/branches/alex_refactoring/ldap/pom.xml (original)
+++ directory/shared/branches/alex_refactoring/ldap/pom.xml Sun Jan  2 22:24:15 2011
@@ -54,6 +54,11 @@
 
     <dependency>
       <groupId>${project.groupId}</groupId>
+      <artifactId>shared-ldap-model</artifactId>
+    </dependency> 
+
+    <dependency>
+      <groupId>${project.groupId}</groupId>
       <artifactId>shared-util</artifactId>
     </dependency> 
 

Modified: directory/shared/branches/alex_refactoring/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/pom.xml?rev=1054476&r1=1054475&r2=1054476&view=diff
==============================================================================
--- directory/shared/branches/alex_refactoring/pom.xml (original)
+++ directory/shared/branches/alex_refactoring/pom.xml Sun Jan  2 22:24:15 2011
@@ -76,6 +76,7 @@
     <module>asn1-api</module>
     <module>asn1-ber</module>
     <module>ldap</module>
+    <module>ldap-model</module>
     <module>ldap-schema</module>
     <module>ldap-client-api</module>
     <module>dsml-parser</module>
@@ -121,6 +122,12 @@
 
       <dependency>
         <groupId>${project.groupId}</groupId>
+        <artifactId>shared-ldap-model</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>${project.groupId}</groupId>
         <artifactId>shared-ldap</artifactId>
         <version>${project.version}</version>
       </dependency>