[slf4j-dev] svn commit: r1366 - in slf4j/trunk: . integration jcl-over-slf4j jcl104-over-slf4j jul-to-slf4j log4j-over-slf4j osgi-over-slf4j slf4j-api slf4j-api/src/main/java/org/slf4j slf4j-api/src/main/java/org/slf4j/impl slf4j-ext slf4j-jcl slf4j-jcl/src/main/java/org/slf4j/impl slf4j-jdk14 slf4j-jdk14/src/main/java/org/slf4j/impl slf4j-log4j12 slf4j-log4j12/src/main/java/org/slf4j/impl slf4j-migrator slf4j-nop slf4j-nop/src/main/java/org/slf4j/impl slf4j-osgi-integration-test slf4j-osgi-test-bundle slf4j-simple slf4j-simple/src/main/java/org/slf4j/impl slf4j-site slf4j-site/src/site/pages
ceki at slf4j.org
ceki at slf4j.org
Thu Jun 11 13:54:15 CEST 2009
Author: ceki
Date: Thu Jun 11 13:54:15 2009
New Revision: 1366
Modified:
slf4j/trunk/integration/pom.xml
slf4j/trunk/jcl-over-slf4j/pom.xml
slf4j/trunk/jcl104-over-slf4j/pom.xml
slf4j/trunk/jul-to-slf4j/pom.xml
slf4j/trunk/log4j-over-slf4j/pom.xml
slf4j/trunk/osgi-over-slf4j/pom.xml
slf4j/trunk/pom.xml
slf4j/trunk/slf4j-api/pom.xml
slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
slf4j/trunk/slf4j-ext/pom.xml
slf4j/trunk/slf4j-jcl/pom.xml
slf4j/trunk/slf4j-jcl/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
slf4j/trunk/slf4j-jdk14/pom.xml
slf4j/trunk/slf4j-jdk14/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
slf4j/trunk/slf4j-log4j12/pom.xml
slf4j/trunk/slf4j-log4j12/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
slf4j/trunk/slf4j-migrator/pom.xml
slf4j/trunk/slf4j-nop/pom.xml
slf4j/trunk/slf4j-nop/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
slf4j/trunk/slf4j-osgi-integration-test/pom.xml
slf4j/trunk/slf4j-osgi-test-bundle/pom.xml
slf4j/trunk/slf4j-simple/pom.xml
slf4j/trunk/slf4j-simple/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
slf4j/trunk/slf4j-site/pom.xml
slf4j/trunk/slf4j-site/src/site/pages/news.html
Log:
- fixed test scope issue in log4j-over-slf4j
- setting version number to 1.5.8
- updating news
Modified: slf4j/trunk/integration/pom.xml
==============================================================================
--- slf4j/trunk/integration/pom.xml (original)
+++ slf4j/trunk/integration/pom.xml Thu Jun 11 13:54:15 2009
@@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/jcl-over-slf4j/pom.xml
==============================================================================
--- slf4j/trunk/jcl-over-slf4j/pom.xml (original)
+++ slf4j/trunk/jcl-over-slf4j/pom.xml Thu Jun 11 13:54:15 2009
@@ -3,7 +3,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/jcl104-over-slf4j/pom.xml
==============================================================================
--- slf4j/trunk/jcl104-over-slf4j/pom.xml (original)
+++ slf4j/trunk/jcl104-over-slf4j/pom.xml Thu Jun 11 13:54:15 2009
@@ -3,7 +3,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/jul-to-slf4j/pom.xml
==============================================================================
--- slf4j/trunk/jul-to-slf4j/pom.xml (original)
+++ slf4j/trunk/jul-to-slf4j/pom.xml Thu Jun 11 13:54:15 2009
@@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/log4j-over-slf4j/pom.xml
==============================================================================
--- slf4j/trunk/log4j-over-slf4j/pom.xml (original)
+++ slf4j/trunk/log4j-over-slf4j/pom.xml Thu Jun 11 13:54:15 2009
@@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -41,6 +41,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
+ <scope>test</scope>
</dependency>
</dependencies>
Modified: slf4j/trunk/osgi-over-slf4j/pom.xml
==============================================================================
--- slf4j/trunk/osgi-over-slf4j/pom.xml (original)
+++ slf4j/trunk/osgi-over-slf4j/pom.xml Thu Jun 11 13:54:15 2009
@@ -3,7 +3,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/pom.xml
==============================================================================
--- slf4j/trunk/pom.xml (original)
+++ slf4j/trunk/pom.xml Thu Jun 11 13:54:15 2009
@@ -5,7 +5,7 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
<packaging>pom</packaging>
<name>SLF4J</name>
Modified: slf4j/trunk/slf4j-api/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-api/pom.xml (original)
+++ slf4j/trunk/slf4j-api/pom.xml Thu Jun 11 13:54:15 2009
@@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
==============================================================================
--- slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java (original)
+++ slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java Thu Jun 11 13:54:15 2009
@@ -84,7 +84,7 @@
* <p>
*/
static private final String[] API_COMPATIBILITY_LIST = new String[] {
- "1.5.5", "1.5.6", "1.5.7" };
+ "1.5.5", "1.5.6", "1.5.7", "1.5.8" };
// private constructor prevents instantiation
private LoggerFactory() {
Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original)
+++ slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Thu Jun 11 13:54:15 2009
@@ -61,7 +61,7 @@
* The value of this field is usually modified with each release.
*/
// to avoid constant folding by the compiler, this field must *not* be final
- public static String REQUESTED_API_VERSION = "2.0.0"; // !final
+ public static String REQUESTED_API_VERSION = "1.5.8"; // !final
private StaticLoggerBinder() {
throw new UnsupportedOperationException("This code should have never made it into the jar");
Modified: slf4j/trunk/slf4j-ext/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-ext/pom.xml (original)
+++ slf4j/trunk/slf4j-ext/pom.xml Thu Jun 11 13:54:15 2009
@@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-jcl/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-jcl/pom.xml (original)
+++ slf4j/trunk/slf4j-jcl/pom.xml Thu Jun 11 13:54:15 2009
@@ -3,7 +3,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-jcl/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- slf4j/trunk/slf4j-jcl/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original)
+++ slf4j/trunk/slf4j-jcl/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Thu Jun 11 13:54:15 2009
@@ -65,7 +65,7 @@
*/
//to avoid constant folding by the compiler, this field must *not* be final
- public static String REQUESTED_API_VERSION = "2.0.0";
+ public static String REQUESTED_API_VERSION = "1.5.8";
// Binding specific code:
private static final String loggerFactoryClassStr = JCLLoggerFactory.class
Modified: slf4j/trunk/slf4j-jdk14/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-jdk14/pom.xml (original)
+++ slf4j/trunk/slf4j-jdk14/pom.xml Thu Jun 11 13:54:15 2009
@@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-jdk14/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- slf4j/trunk/slf4j-jdk14/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original)
+++ slf4j/trunk/slf4j-jdk14/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Thu Jun 11 13:54:15 2009
@@ -66,7 +66,7 @@
* The value of this field is usually modified with each release.
*/
// to avoid constant folding by the compiler, this field must *not* be final
- public static String REQUESTED_API_VERSION = "2.0.0"; // !final
+ public static String REQUESTED_API_VERSION = "1.5.8"; // !final
private static final String loggerFactoryClassStr = org.slf4j.impl.JDK14LoggerFactory.class.getName();
Modified: slf4j/trunk/slf4j-log4j12/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-log4j12/pom.xml (original)
+++ slf4j/trunk/slf4j-log4j12/pom.xml Thu Jun 11 13:54:15 2009
@@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-log4j12/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- slf4j/trunk/slf4j-log4j12/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original)
+++ slf4j/trunk/slf4j-log4j12/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Thu Jun 11 13:54:15 2009
@@ -66,7 +66,7 @@
* against. The value of this field is usually modified with each release.
*/
// to avoid constant folding by the compiler, this field must *not* be final
- public static String REQUESTED_API_VERSION = "2.0.0"; // !final
+ public static String REQUESTED_API_VERSION = "1.5.8"; // !final
private static final String loggerFactoryClassStr = Log4jLoggerFactory.class
.getName();
Modified: slf4j/trunk/slf4j-migrator/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-migrator/pom.xml (original)
+++ slf4j/trunk/slf4j-migrator/pom.xml Thu Jun 11 13:54:15 2009
@@ -7,7 +7,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-nop/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-nop/pom.xml (original)
+++ slf4j/trunk/slf4j-nop/pom.xml Thu Jun 11 13:54:15 2009
@@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-nop/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- slf4j/trunk/slf4j-nop/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original)
+++ slf4j/trunk/slf4j-nop/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Thu Jun 11 13:54:15 2009
@@ -66,7 +66,7 @@
* The value of this field is usually modified with each release.
*/
// to avoid constant folding by the compiler, this field must *not* be final
- public static String REQUESTED_API_VERSION = "2.0.0"; // !final
+ public static String REQUESTED_API_VERSION = "1.5.8"; // !final
private static final String loggerFactoryClassStr = NOPLoggerFactory.class.getName();
Modified: slf4j/trunk/slf4j-osgi-integration-test/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-osgi-integration-test/pom.xml (original)
+++ slf4j/trunk/slf4j-osgi-integration-test/pom.xml Thu Jun 11 13:54:15 2009
@@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-osgi-test-bundle/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-osgi-test-bundle/pom.xml (original)
+++ slf4j/trunk/slf4j-osgi-test-bundle/pom.xml Thu Jun 11 13:54:15 2009
@@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-simple/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-simple/pom.xml (original)
+++ slf4j/trunk/slf4j-simple/pom.xml Thu Jun 11 13:54:15 2009
@@ -3,7 +3,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-simple/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- slf4j/trunk/slf4j-simple/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original)
+++ slf4j/trunk/slf4j-simple/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Thu Jun 11 13:54:15 2009
@@ -58,7 +58,7 @@
* against. The value of this field is usually modified with each release.
*/
// to avoid constant folding by the compiler, this field must *not* be final
- public static String REQUESTED_API_VERSION = "2.0.0"; // !final
+ public static String REQUESTED_API_VERSION = "1.5.8"; // !final
private static final String loggerFactoryClassStr = SimpleLoggerFactory.class.getName();
Modified: slf4j/trunk/slf4j-site/pom.xml
==============================================================================
--- slf4j/trunk/slf4j-site/pom.xml (original)
+++ slf4j/trunk/slf4j-site/pom.xml Thu Jun 11 13:54:15 2009
@@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>1.5.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: slf4j/trunk/slf4j-site/src/site/pages/news.html
==============================================================================
--- slf4j/trunk/slf4j-site/src/site/pages/news.html (original)
+++ slf4j/trunk/slf4j-site/src/site/pages/news.html Thu Jun 11 13:54:15 2009
@@ -27,6 +27,18 @@
<hr noshade="noshade" size="1"/>
+ <h3>June 11th, 2009 - Release of SLF4J 1.5.8</h3>
+
+ <p>SLF4J version 1.5.8 consist of bug fixes. It is totally backward
+ compatible with SLF4J version 1.5.7.</p>
+
+ <p>The Maven pom file for the <code>log4j-over-slf4j</code> module
+ contained a compile time dependency on the <code>slf4j-jdk14</code>
+ module. The dependency should have been declared in the test
+ scope. This problem was reported by Jean-Luc Geering on the slf4j
+ user list.
+ </p>
+
<h3>June 10th, 2009 - Release of SLF4J 1.5.7</h3>
<p>SLF4J version 1.5.7 consist of bug fixes and minor
More information about the slf4j-dev
mailing list