
The branch, master has been updated via 4cdca9f671ff8251e7775fee498a7331328ffa5b (commit) from b3f2333b924d4c811059863e92c5b7742580fe47 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=4cdca9f671ff8251e7775fee4... http://github.com/ceki/logback/commit/4cdca9f671ff8251e7775fee498a7331328ffa... commit 4cdca9f671ff8251e7775fee498a7331328ffa5b Author: Ceki Gulcu <ceki@qos.ch> Date: Wed Nov 11 09:02:45 2009 +0100 - instead of hardcoding, have logback-classic's MANIFEST reference/export slf4j by variable. diff --git a/logback-classic/pom.xml b/logback-classic/pom.xml index f7e1bd7..b460fb3 100644 --- a/logback-classic/pom.xml +++ b/logback-classic/pom.xml @@ -208,7 +208,7 @@ </executions> <configuration> <instructions> - <Export-Package>ch.qos.logback.classic*, org.slf4j.impl;version=1.5.6</Export-Package> + <Export-Package>ch.qos.logback.classic*, org.slf4j.impl;version=${slf4j.version}</Export-Package> <!-- LB-CLASSIC It is necessary to specify the rolling file packages as classes are created via IOC (xml config files). They won't be found by Bnd's analysis diff --git a/pom.xml b/pom.xml index dd83c9b..5186c99 100755 --- a/pom.xml +++ b/pom.xml @@ -35,8 +35,9 @@ </dependencies> <properties> - <!-- slf4j.version property is used below and in setClasspath.cmd --> - <slf4j.version>1.5.8</slf4j.version> + <!-- slf4j.version property is used below, in + logback-classic/pom.xml and in setClasspath.cmd --> + <slf4j.version>1.5.9.RC1</slf4j.version> <consolePlugin.version>1.1.0</consolePlugin.version> </properties> ----------------------------------------------------------------------- Summary of changes: logback-classic/pom.xml | 2 +- pom.xml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework.