You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2005/09/02 10:34:52 UTC

svn commit: r266734 - in /directory/sandbox/trunk/osgi-core/trunk/apacheds: project.xml src/main/java/org/apache/ldap/server/Activator.java

Author: erodriguez
Date: Fri Sep  2 01:34:47 2005
New Revision: 266734

URL: http://svn.apache.org/viewcvs?rev=266734&view=rev
Log:
Update to apacheds OSGi bundle, related to DNS protocol provider work:
o  bumping up deps to follow schema changes in core (apachedns.schema)
o  adding ApachednsSchema to included schemas in configuration

Modified:
    directory/sandbox/trunk/osgi-core/trunk/apacheds/project.xml
    directory/sandbox/trunk/osgi-core/trunk/apacheds/src/main/java/org/apache/ldap/server/Activator.java

Modified: directory/sandbox/trunk/osgi-core/trunk/apacheds/project.xml
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/osgi-core/trunk/apacheds/project.xml?rev=266734&r1=266733&r2=266734&view=diff
==============================================================================
--- directory/sandbox/trunk/osgi-core/trunk/apacheds/project.xml (original)
+++ directory/sandbox/trunk/osgi-core/trunk/apacheds/project.xml Fri Sep  2 01:34:47 2005
@@ -95,7 +95,7 @@
     <dependency>
       <groupId>directory-shared</groupId>
       <artifactId>ldap-common</artifactId>
-      <version>0.9.2-SNAPSHOT</version>
+      <version>0.9.3-SNAPSHOT</version>
       <properties>
         <osgi.jar.bundle>true</osgi.jar.bundle>
       </properties>
@@ -103,7 +103,7 @@
     <dependency>
       <groupId>directory</groupId>
       <artifactId>apacheds-core</artifactId>
-      <version>0.9.2-SNAPSHOT</version>
+      <version>0.9.3-SNAPSHOT</version>
       <properties>
         <osgi.jar.bundle>true</osgi.jar.bundle>
       </properties>
@@ -111,7 +111,7 @@
     <dependency>
       <groupId>directory</groupId>
       <artifactId>apacheds-shared</artifactId>
-      <version>0.9.2-SNAPSHOT</version>
+      <version>0.9.3-SNAPSHOT</version>
       <properties>
         <osgi.jar.bundle>true</osgi.jar.bundle>
       </properties>

Modified: directory/sandbox/trunk/osgi-core/trunk/apacheds/src/main/java/org/apache/ldap/server/Activator.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/osgi-core/trunk/apacheds/src/main/java/org/apache/ldap/server/Activator.java?rev=266734&r1=266733&r2=266734&view=diff
==============================================================================
--- directory/sandbox/trunk/osgi-core/trunk/apacheds/src/main/java/org/apache/ldap/server/Activator.java (original)
+++ directory/sandbox/trunk/osgi-core/trunk/apacheds/src/main/java/org/apache/ldap/server/Activator.java Fri Sep  2 01:34:47 2005
@@ -33,6 +33,7 @@
 import org.apache.ldap.server.configuration.ShutdownConfiguration;
 import org.apache.ldap.server.jndi.CoreContextFactory;
 import org.apache.ldap.server.schema.bootstrap.ApacheSchema;
+import org.apache.ldap.server.schema.bootstrap.ApachednsSchema;
 import org.apache.ldap.server.schema.bootstrap.CoreSchema;
 import org.apache.ldap.server.schema.bootstrap.CosineSchema;
 import org.apache.ldap.server.schema.bootstrap.InetorgpersonSchema;
@@ -146,6 +147,7 @@
         schemas.add( new InetorgpersonSchema() );
         schemas.add( new Krb5kdcSchema() );
         schemas.add( new SystemSchema() );
+        schemas.add( new ApachednsSchema() );
         config.setBootstrapSchemas( schemas );
         config.setContextPartitionConfigurations( Collections.singleton( partConfig ) );