[slf4j-dev] [Bug 48] testing

2007-05-18 Thread bugzilla-daemon
http://bugzilla.slf4j.org/show_bug.cgi?id=48


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from [EMAIL PROTECTED]  2007-05-18 21:58 ---
done


-- 
Configure bugmail: http://bugzilla.slf4j.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.
___
dev mailing list
dev@slf4j.org
http://www.slf4j.org/mailman/listinfo/dev


[slf4j-dev] svn commit: r811 - slf4j/trunk/jcl104-over-slf4j

2007-05-18 Thread ceki
Author: ceki
Date: Fri May 18 22:12:09 2007
New Revision: 811

Modified:
   slf4j/trunk/jcl104-over-slf4j/   (props changed)

Log:
added ignored file
___
dev mailing list
dev@slf4j.org
http://www.slf4j.org/mailman/listinfo/dev


[slf4j-dev] svn commit: r812 - in slf4j/trunk: . jcl104-over-slf4j osgi-over-slf4j slf4j-api slf4j-archetype slf4j-archetype/src/main/resources/META-INF/maven slf4j-archetype/src/main/resources/archet

2007-05-18 Thread ceki
Author: ceki
Date: Fri May 18 22:57:38 2007
New Revision: 812

Modified:
   slf4j/trunk/goVersion.sh
   slf4j/trunk/jcl104-over-slf4j/pom.xml
   slf4j/trunk/osgi-over-slf4j/pom.xml
   slf4j/trunk/pom.xml
   slf4j/trunk/slf4j-api/pom.xml
   slf4j/trunk/slf4j-archetype/pom.xml
   slf4j/trunk/slf4j-archetype/src/main/resources/META-INF/maven/archetype.xml
   slf4j/trunk/slf4j-archetype/src/main/resources/archetype-resources/pom.xml
   
slf4j/trunk/slf4j-archetype/src/main/resources/archetype-resources/src/main/java/impl/NOPLogger.java
   
slf4j/trunk/slf4j-archetype/src/main/resources/archetype-resources/src/main/java/impl/StaticLoggerBinder.java
   
slf4j/trunk/slf4j-archetype/src/main/resources/archetype-resources/src/main/java/impl/StaticMarkerBinder.java
   
slf4j/trunk/slf4j-archetype/src/main/resources/archetype-resources/src/test/java/InvocationTest.java
   slf4j/trunk/slf4j-jcl/pom.xml
   slf4j/trunk/slf4j-jdk14/pom.xml
   slf4j/trunk/slf4j-log4j12/pom.xml
   slf4j/trunk/slf4j-nop/pom.xml
   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-site/pom.xml
   slf4j/trunk/slf4j-site/src/site/pages/faq.html
   slf4j/trunk/slf4j-site/src/site/pages/news.html

Log:

- changing version number to 1.4.0 preparation for a release
- modified carious pom.xml file to inherit the version number for the slf4j-api 
project from 
  slf4j-parent module 
- fixed slf4j-archetype module (it can now create a functional albeit simple 
SLF4J binding)
- updated the FAQ and news in preparation for the 1.4.0 release

Modified: slf4j/trunk/goVersion.sh
==
--- slf4j/trunk/goVersion.sh(original)
+++ slf4j/trunk/goVersion.shFri May 18 22:57:38 2007
@@ -2,5 +2,5 @@
 VER=$1
 echo Will use version $VER
 
-find . -name pom.xml |xargs perl version.pl $VER 
+find . -name pom.xml |grep -v archetype-resources|xargs perl version.pl $VER 
 perl version.pl $VER ./slf4j-site/src/site/site.xml
\ No newline at end of file

Modified: slf4j/trunk/jcl104-over-slf4j/pom.xml
==
--- slf4j/trunk/jcl104-over-slf4j/pom.xml   (original)
+++ slf4j/trunk/jcl104-over-slf4j/pom.xml   Fri May 18 22:57:38 2007
@@ -3,7 +3,7 @@
parent
groupIdorg.slf4j/groupId
artifactIdslf4j-parent/artifactId
-version1.4.0-SNAPSHOT/version
+version1.4.0/version
/parent

modelVersion4.0.0/modelVersion

Modified: slf4j/trunk/osgi-over-slf4j/pom.xml
==
--- slf4j/trunk/osgi-over-slf4j/pom.xml (original)
+++ slf4j/trunk/osgi-over-slf4j/pom.xml Fri May 18 22:57:38 2007
@@ -3,7 +3,7 @@
   parent
 groupIdorg.slf4j/groupId
 artifactIdslf4j-parent/artifactId
-version1.4.0-SNAPSHOT/version
+version1.4.0/version
   /parent
   
   modelVersion4.0.0/modelVersion

Modified: slf4j/trunk/pom.xml
==
--- slf4j/trunk/pom.xml (original)
+++ slf4j/trunk/pom.xml Fri May 18 22:57:38 2007
@@ -5,7 +5,7 @@
 
groupIdorg.slf4j/groupId
artifactIdslf4j-parent/artifactId
-   version1.4.0-SNAPSHOT/version
+   version1.4.0/version
 
packagingpom/packaging
nameSLF4J/name
@@ -46,9 +46,24 @@
/dependencies
 
  
-   dependencyManagement
-dependencies/
-   /dependencyManagement
+ dependencyManagement
+dependencies
+
+  dependency
+groupId${project.groupId}/groupId
+artifactIdslf4j-api/artifactId
+version${project.version}/version
+  /dependency
+
+  dependency
+groupIdlog4j/groupId
+artifactIdlog4j/artifactId
+version1.2.13/version
+  /dependency
+
+   /dependencies
+ /dependencyManagement
+
 
build
plugins

Modified: slf4j/trunk/slf4j-api/pom.xml
==
--- slf4j/trunk/slf4j-api/pom.xml   (original)
+++ slf4j/trunk/slf4j-api/pom.xml   Fri May 18 22:57:38 2007
@@ -5,7 +5,7 @@
   parent
 groupIdorg.slf4j/groupId
 artifactIdslf4j-parent/artifactId
-version1.4.0-SNAPSHOT/version
+version1.4.0/version
   /parent
 
   modelVersion4.0.0/modelVersion

Modified: slf4j/trunk/slf4j-archetype/pom.xml
==
--- slf4j/trunk/slf4j-archetype/pom.xml (original)
+++ slf4j/trunk/slf4j-archetype/pom.xml Fri May 18 22:57:38 2007
@@ -2,7 +2,7 @@
   parent
 artifactIdslf4j-parent/artifactId
 groupIdorg.slf4j/groupId
-version1.4.0-SNAPSHOT/version
+version1.4.0/version
   /parent
 
   modelVersion4.0.0/modelVersion

Modified: 
slf4j/trunk/slf4j-archetype/src/main/resources/META-INF/maven/archetype.xml

[slf4j-dev] Release of SLF4J 1.4.0

2007-05-18 Thread Ceki Gulcu

May 16th, 2007 - Release of SLF4J 1.4.0

I am happy to annonce the immediate availability of SLF4J version
1.4.0.

In response to many user requests over time, the TRACE level has been
added to org.slf4j.Logger interface. Please also see the FAQ entry
discussing the TRACE level at:

  http://www.slf4j.org/faq.html#trace

Fixed bug 47 as reported by Terry Todd. In previous a SLF4J release
the org.apache.commons.logging.impl.SLF4FLogFactory class was renamed
as SLF4JLogFactory. The
META-INF/services/org.apache.commons.logging.LogFactory resource file
had not reflected this change. It does now.

You can download SLF4J, including full source code, class files and
documentation on our download page, shown below.

  http://www.slf4j.org/download.html

You can receive SLF4J related announcements by subscribing to the
SLF4J announce mailing list. To subscribe to SLF4J-announce list,
please visit the following URL.

  http://www.slf4j.org/mailman/listinfo/announce

Enjoy,

-- 
Ceki Gülcü
Logback: The reliable, generic, fast and flexible logging framework for Java.
http://logback.qos.ch
___
dev mailing list
dev@slf4j.org
http://www.slf4j.org/mailman/listinfo/dev