Remove redundant dependency information
Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/f99dbf52 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/f99dbf52 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/f99dbf52 Branch: refs/heads/LOG4J2-435-delete-on-rollover Commit: f99dbf5257c1f293015942dc516bb9f2d8c7f9d7 Parents: 09ef47a Author: Mikael Ståldal <[email protected]> Authored: Wed Nov 11 10:49:19 2015 +0100 Committer: Ralph Goers <[email protected]> Committed: Fri Nov 20 17:39:22 2015 -0700 ---------------------------------------------------------------------- log4j-core/src/site/xdoc/index.xml | 23 +---------------------- src/site/xdoc/runtime-dependencies.xml | 10 +++++++++- 2 files changed, 10 insertions(+), 23 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f99dbf52/log4j-core/src/site/xdoc/index.xml ---------------------------------------------------------------------- diff --git a/log4j-core/src/site/xdoc/index.xml b/log4j-core/src/site/xdoc/index.xml index db4a532..16d3ec9 100644 --- a/log4j-core/src/site/xdoc/index.xml +++ b/log4j-core/src/site/xdoc/index.xml @@ -38,31 +38,10 @@ documentation for those features. </p> <p> - Below is a list of Log4j features that require external dependencies. + Some Log4j features require external dependencies. See the <a href="dependencies.html#Dependency_Tree">Dependency Tree</a> for the exact list of JAR files needed for these features. </p> - <ul> - <li>JSON configuration requires the Jackson Data Processor.</li> - <li>Async Loggers require the LMAX Disruptor.</li> - <li>The SMTPAppender requires Javax Mail.</li> - <li>The JMSQueueAppender and JMSTopicAppender require a JMS implementation like - <a href="http://activemq.apache.org/">Apache ActiveMQ</a>.</li> - <li>The Kafka appender requires <a href="http://search.maven.org/#artifactdetails|org.apache.kafka|kafka-clients|0.8.2.2|jar">Kafka client library</a></li> - <li>Windows console color support requires <a href="http://jansi.fusesource.org/">Jansi</a>.</li> - <li>The JDBC Appender requires a JDBC driver for the database you choose to write events to.</li> - <li>The JPA Appender requires the Java Persistence API classes, a JPA provider implementation, - and a decorated entity that the user implements. It also requires an appropriate JDBC driver.</li> - <li>The NoSQL Appender with MongoDB provider requires the MongoDB Java Client driver.</li> - <li>The NoSQL Appender with Apache CouchDB provider requires the LightCouch CouchDB client library.</li> - <li>The NoSQL Appender can be customized with a user-supplied provider, which will require the - appropriate client library.</li> - <li>Bzip2, Deflate, Pack200, and XZ compression on rollover requires - <a href="http://commons.apache.org/proper/commons-compress/">Apache Commons Compress</a>. In addition, - XZ requires <a href="http://tukaani.org/xz/java.html">XZ for Java</a>.</li> - <li>The CSV layout requires the <a href="https://commons.apache.org/proper/commons-csv/">Apache Commons CSV</a> library.</li> - <li>The ZeroMQ/JeroMQ requires the <a href="https://github.com/zeromq/jeromq">JeroMQ</a> library.</li> - </ul> </section> </body> http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f99dbf52/src/site/xdoc/runtime-dependencies.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/runtime-dependencies.xml b/src/site/xdoc/runtime-dependencies.xml index 8d67cde..b9cb0a0 100644 --- a/src/site/xdoc/runtime-dependencies.xml +++ b/src/site/xdoc/runtime-dependencies.xml @@ -82,7 +82,7 @@ </tr> <tr> <td>Kafka Appender</td> - <td><a href="http://search.maven.org/#artifactdetails|org.apache.kafka|kafka-clients|0.8.2.2|jar">Kafka client library</a></td> + <td><a href="http://kafka.apache.org/">Kafka client library</a></td> </tr> <tr> <td>SMTP Appender</td> @@ -107,6 +107,14 @@ </td> </tr> <tr> + <td>NoSQL Appender with MongoDB provider</td> + <td>MongoDB Java Client driver</td> + </tr> + <tr> + <td>NoSQL Appender with Apache CouchDB provider</td> + <td>LightCouch CouchDB client library</td> + </tr> + <tr> <td>Bzip2, Deflate, Pack200, and XZ compression on rollover</td> <td><a href="http://commons.apache.org/proper/commons-compress/">Apache Commons Compress</a>. In addition, XZ requires <a href="http://tukaani.org/xz/java.html">XZ for Java</a>.
