jeremylong opened a new pull request, #119:
URL: https://github.com/apache/commons-jcs/pull/119
Move logging to separate modules so that `log4j` can be excluded when custom
logging (e.g., not `JUL` or `log4j`) is used. This change should be
non-breaking as the new `commons-jcs3-logging` and `commons-jcs3-log4j` are
included as dependencies of core.
```xml
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jcs3-core</artifactId>
<version>3.1</version>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jcs3-log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
```
Resolves https://issues.apache.org/jira/browse/JCS-232
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]