Logging.
Commons Logging.
Here is the list of declaration for commons-logging. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.3</version> </dependency>
If you think this Maven repository POM file listing for commons-logging is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The commons-logging-1.0.3 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.7 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 21 |
The following table lists the most popular artifacts which are depending on commons-logging-1.0.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Groovy | groovy 1.0-jsr-04 a powerful and dynamic scripting language for the JVM | 5 |
JSP | commons-jexl 1.1-hudson-20080725 Jexl is an implementation of the JSTL Expression Language with extensions. | 12 |
JSP | commons-jexl 1.1-hudson-20090322 Jexl is an implementation of the JSTL Expression Language with extensions. | 6 |
Log | perf4j 0.9.16 Performance statistics logging and monitoring toolkit extension to log4j, logback and the java.util.logging framework. | 14 |
Log | perf4j 0.9.13 Performance statistics logging and monitoring toolkit extension to log4j and the java.util.logging framework. | 8 |
Log | perf4j 0.9.14 Performance statistics logging and monitoring toolkit extension to log4j and the java.util.logging framework. | 6 |
Http | commons-httpclient 3.0 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 37 |
EJB | openejb-core 1.0 OpenEJB Core EJB Container | 51 |
Database | jackcess 1.2.4 A pure Java library for reading from and writing to MS Access databases. | 6 |
JSP | commons-jexl 1.1-hudson-20071021 Jexl is an implementation of the JSTL Expression Language with extensions. | 8 |
JSP | commons-jexl 1.1-hudson-20081031 Jexl is an implementation of the JSTL Expression Language with extensions. | 24 |
Groovy | groovy 1.0-jsr-06 a powerful and dynamic scripting language for the JVM | 7 |
JSP | commons-el 1.0 JSP 2.0 Expression Language Interpreter Implementation | 42 |
Http | commons-httpclient 3.0.1 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 77 |
XML | commons-jelly-tags-xml 1.1 The Jelly XML Tag Library | 154 |
Data Structure | commons-chain 1.1 An implmentation of the GoF Chain of Responsibility pattern | 5 |
Data Structure | commons-math 1.1 The Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang. | 143 |
XML | commons-jelly 1.0 Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting engine. | 53 |
Http | commons-httpclient 2.0.2 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 9 |
JSP | commons-jexl 1.1 Jexl is an implementation of the JSTL Expression Language with extensions. | 21 |
JSP | commons-jexl 1.1-hudson-20090508 Jexl is an implementation of the JSTL Expression Language with extensions. | 87 |
Testing Coding Style | checkstyle 5.0 Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard | 20 |
Data Structure | commons-discovery 0.2 Commons Discovery | 30 |
The following packages are defined in the commons-logging-1.0.3.jar
org.apache.commons.logging org.apache.commons.logging.impl
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <name>Logging</name> <version>1.0.3</version> <description>Commons Logging</description> <url>http://jakarta.apache.org/commons/logging/</url> <inceptionYear>2001</inceptionYear> <build /> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.6</version> <optional>true</optional> </dependency> <dependency> <groupId>logkit</groupId> <artifactId>logkit</artifactId> <version>1.0.1</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.7</version> <scope>test</scope> </dependency> </dependencies> </project>