You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2014/08/17 01:00:55 UTC

svn commit: r1618426 - /logging/log4j/log4j2/trunk/log4j-nosql/src/site/xdoc/index.xml.vm

Author: mattsicker
Date: Sat Aug 16 23:00:55 2014
New Revision: 1618426

URL: http://svn.apache.org/r1618426
Log:
Add more information to NoSQL manual page.

Modified:
    logging/log4j/log4j2/trunk/log4j-nosql/src/site/xdoc/index.xml.vm

Modified: logging/log4j/log4j2/trunk/log4j-nosql/src/site/xdoc/index.xml.vm
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-nosql/src/site/xdoc/index.xml.vm?rev=1618426&r1=1618425&r2=1618426&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/log4j-nosql/src/site/xdoc/index.xml.vm (original)
+++ logging/log4j/log4j2/trunk/log4j-nosql/src/site/xdoc/index.xml.vm Sat Aug 16 23:00:55 2014
@@ -15,7 +15,7 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
-<!-- TODO: turn this into a velocity template for all the version numbers -->
+<!-- TODO: use properties for dynamic dependency versions -->
 <document>
     <properties>
         <title>NoSQL Appenders</title>
@@ -27,44 +27,48 @@
 
             <p>
               The NoSQL Appenders allow applications to send events to NoSQL repositories.
+              To use it, you need both the <code>log4j-nosql</code> as well as the appropriate
+              driver for your NoSQL database type.
             </p>
           <subsection name="CouchDB">
             <p>
-              Need something about CouchDB.
+                <a href="https://couchdb.apache.org/">Apache CouchDB</a> is supported through the
+                <a href="http://www.lightcouch.org/">LightCouch</a> driver.
             </p>
             <pre class="prettyprint linenums"><![CDATA[  <dependencyManagement>
     <dependencies>
       <dependency>
-        <groupId></groupId>
-        <artifactId></artifactId>
-        <version></version>
+        <groupId>org.lightcouch</groupId>
+        <artifactId>lightcouch</artifactId>
+        <version>0.0.6</version>
       </dependency>
     </dependencies>
   </dependencyManagement>
   <dependencies>
     <dependency>
-      <groupId></groupId>
-      <artifactId></artifactId>
+      <groupId>org.lightcouch</groupId>
+      <artifactId>lightcouch</artifactId>
     </dependency>
   </dependencies>]]></pre>
           </subsection>
           <subsection name="MongoDB">
             <p>
-              Need something about MongoDB
+                <a href="http://www.mongodb.org/">MongoDB</a> is supported through the
+                <a href="http://docs.mongodb.org/ecosystem/drivers/java/">Java MongoDB Driver</a>.
             </p>
             <pre class="prettyprint linenums"><![CDATA[  <dependencyManagement>
     <dependencies>
       <dependency>
-        <groupId></groupId>
-        <artifactId></artifactId>
-        <version></version>
+        <groupId>org.mongodb</groupId>
+        <artifactId>mongo-java-driver</artifactId>
+        <version>2.12.3</version>
       </dependency>
     </dependencies>
   </dependencyManagement>
   <dependencies>
     <dependency>
-      <groupId></groupId>
-      <artifactId></artifactId>
+      <groupId>org.mongodb</groupId>
+      <artifactId>mongo-java-driver</artifactId>
     </dependency>
   </dependencies>]]></pre>
           </subsection>
@@ -78,4 +82,4 @@
         </section>
 
     </body>
-</document>
\ No newline at end of file
+</document>