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 2006/01/21 13:44:53 UTC

svn commit: r371025 - in /directory/trunks/apacheds: core/pom.xml core/src/site/ plugin/pom.xml shared/pom.xml src/site/site.xml standalone/simple/pom.xml

Author: ersiner
Date: Sat Jan 21 04:44:40 2006
New Revision: 371025

URL: http://svn.apache.org/viewcvs?rev=371025&view=rev
Log:
ApacheDS projects are now available for site generation.
I have mostly tried to keep existing url structure. But the "main" project is renamed to "standalone".

Removed:
    directory/trunks/apacheds/core/src/site/
Modified:
    directory/trunks/apacheds/core/pom.xml
    directory/trunks/apacheds/plugin/pom.xml
    directory/trunks/apacheds/shared/pom.xml
    directory/trunks/apacheds/src/site/site.xml
    directory/trunks/apacheds/standalone/simple/pom.xml

Modified: directory/trunks/apacheds/core/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/core/pom.xml?rev=371025&r1=371024&r2=371025&view=diff
==============================================================================
--- directory/trunks/apacheds/core/pom.xml (original)
+++ directory/trunks/apacheds/core/pom.xml Sat Jan 21 04:44:40 2006
@@ -8,7 +8,19 @@
   </parent>
   <artifactId>org.apache.ldap.server.core</artifactId>
   <name>apacheds-core</name>
-  <packaging>jar</packaging>  
+  <packaging>jar</packaging>
+  <description>
+     Server's core contains all backend subsystems. It depends on protocol 
+     and uses it with seda to service LDAP requests. The core contains the 
+     JNDI provider, interceptor framework, interceptor services, the schema 
+     subsystem and the database subsystem. Hence the core is the heart of the server.
+  </description>
+  <distributionManagement>
+    <site>
+      <id>apache.websites</id>
+      <url>scp://minotaur.apache.org/www/directory.apache.org/newsite/subprojects/apacheds/projects/apacheds-core/</url>
+    </site>
+  </distributionManagement> 
   <dependencies>
     <dependency>
       <groupId>commons-io</groupId>

Modified: directory/trunks/apacheds/plugin/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/plugin/pom.xml?rev=371025&r1=371024&r2=371025&view=diff
==============================================================================
--- directory/trunks/apacheds/plugin/pom.xml (original)
+++ directory/trunks/apacheds/plugin/pom.xml Sat Jan 21 04:44:40 2006
@@ -8,7 +8,17 @@
   </parent>
   <artifactId>org.apache.ldap.server.plugin</artifactId>
   <name>apacheds-plugin</name>
-  <packaging>maven-plugin</packaging>  
+  <packaging>maven-plugin</packaging>
+  <description>
+    A collection of tools as plugins to manage various tasks associated with 
+    the directory server.
+  </description>
+  <distributionManagement>
+    <site>
+      <id>apache.websites</id>
+      <url>scp://minotaur.apache.org/www/directory.apache.org/newsite/subprojects/apacheds/projects/apacheds-plugin/</url>
+    </site>
+  </distributionManagement> 
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>

Modified: directory/trunks/apacheds/shared/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/shared/pom.xml?rev=371025&r1=371024&r2=371025&view=diff
==============================================================================
--- directory/trunks/apacheds/shared/pom.xml (original)
+++ directory/trunks/apacheds/shared/pom.xml Sat Jan 21 04:44:40 2006
@@ -8,6 +8,17 @@
   </parent>
   <artifactId>org.apache.ldap.server.shared</artifactId>
   <name>apacheds-shared</name>
-  <packaging>jar</packaging>  
+  <packaging>jar</packaging>
+  <description>
+     Created to eliminate cyclic project dependencies between the core 
+     and the maven plugin. Any code shared across modules in general 
+     can go here so long as it does not depend on other modules. 
+  </description>
+  <distributionManagement>
+    <site>
+      <id>apache.websites</id>
+      <url>scp://minotaur.apache.org/www/directory.apache.org/newsite/subprojects/apacheds/projects/apacheds-shared/</url>
+    </site>
+  </distributionManagement>
 </project>
 

Modified: directory/trunks/apacheds/src/site/site.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/src/site/site.xml?rev=371025&r1=371024&r2=371025&view=diff
==============================================================================
--- directory/trunks/apacheds/src/site/site.xml (original)
+++ directory/trunks/apacheds/src/site/site.xml Sat Jan 21 04:44:40 2006
@@ -1,21 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <project>
-
- 
-
- <body>
-
+  <body>
     <links>
-      <item name="Directory" href="../../index.html"/>
-      <item name="ApacheDS" href="../apacheds/index.html"/>
-      <item name="LDAP" href="../ldap.html"/>
-      <item name="Naming" href="../naming/index.html"/>
-      <item name="ASN.1" href="../asn1/index.html"/>
-      <item name="Kerberos" href="../kerberos.html"/>
-      <item name="AuthX" href="../authx/index.html"/>
-      <item name="MINA" href="../network/index.html"/>
-      <item name="Protocols" href="../providers.html"/>
     </links>
 
     <menu name="Apache Directory Server">
@@ -40,7 +27,7 @@
         <item name="Backend Subsystem" href="/developers/backend.html"/>
       </item>
       <item name="ApacheDS Projects" href="/projects/index.html" collapse="true">
-        <item name="main" href="/projects/apacheds-main/index.html"/>
+        <item name="standalone" href="/projects/apacheds-standalone/index.html"/>
         <item name="core" href="/projects/apacheds-core/index.html"/>
         <item name="shared" href="/projects/apacheds-shared/index.html"/>
         <item name="plugin" href="/projects/maven-directory-plugin/index.html"/>

Modified: directory/trunks/apacheds/standalone/simple/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/standalone/simple/pom.xml?rev=371025&r1=371024&r2=371025&view=diff
==============================================================================
--- directory/trunks/apacheds/standalone/simple/pom.xml (original)
+++ directory/trunks/apacheds/standalone/simple/pom.xml Sat Jan 21 04:44:40 2006
@@ -9,7 +9,17 @@
   <artifactId>build</artifactId>
   <groupId>org.apache.directory.server.standalone.simple</groupId>
   <name>simple-build</name>
-  <packaging>pom</packaging>  
+  <packaging>pom</packaging>
+  <description>
+    A single executable server jar containing all dependencies. This jar 
+    can be used as the JNDI provider or to fire up the standalone directory server.
+  </description>
+  <distributionManagement>
+    <site>
+      <id>apache.websites</id>
+      <url>scp://minotaur.apache.org/www/directory.apache.org/newsite/subprojects/apacheds/projects/apacheds-standalone/</url>
+    </site>
+  </distributionManagement>
   <dependencies>
     <dependency>
       <groupId>org.slf4j</groupId>