Skip to content

Commit

Permalink
- fixed test scope issue in log4j-over-slf4j
Browse files Browse the repository at this point in the history
- setting version number to 1.5.8
- updating news
  • Loading branch information
ceki committed Jun 11, 2009
1 parent 88b4eaa commit 6501841
Show file tree
Hide file tree
Showing 26 changed files with 38 additions and 25 deletions.
2 changes: 1 addition & 1 deletion integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion jcl-over-slf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion jcl104-over-slf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion jul-to-slf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion log4j-over-slf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -41,6 +41,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion osgi-over-slf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion slf4j-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public final class LoggerFactory {
* <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() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static final StaticLoggerBinder getSingleton() {
* 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");
Expand Down
2 changes: 1 addition & 1 deletion slf4j-ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion slf4j-jcl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static final StaticLoggerBinder getSingleton() {
*/

//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
Expand Down
2 changes: 1 addition & 1 deletion slf4j-jdk14/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static final StaticLoggerBinder getSingleton() {
* 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();
Expand Down
2 changes: 1 addition & 1 deletion slf4j-log4j12/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static final StaticLoggerBinder getSingleton() {
* 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();
Expand Down
2 changes: 1 addition & 1 deletion slf4j-migrator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion slf4j-nop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static final StaticLoggerBinder getSingleton() {
* 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();

Expand Down
2 changes: 1 addition & 1 deletion slf4j-osgi-integration-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion slf4j-osgi-test-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion slf4j-simple/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static final StaticLoggerBinder getSingleton() {
* 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();

Expand Down
2 changes: 1 addition & 1 deletion slf4j-site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
12 changes: 12 additions & 0 deletions slf4j-site/src/site/pages/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ <h1>SLF4J News</h1>

<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
Expand Down

0 comments on commit 6501841

Please sign in to comment.