[slf4j-dev] svn commit: r1022 - slf4j/trunk/jul-to-slf4j

ceki at slf4j.org ceki at slf4j.org
Wed May 28 22:28:34 CEST 2008


Author: ceki
Date: Wed May 28 22:28:34 2008
New Revision: 1022

Added:
   slf4j/trunk/jul-to-slf4j/pom.xml

Log:
- started work on jul-to-slf4j bridge as requested in bug 38

Added: slf4j/trunk/jul-to-slf4j/pom.xml
==============================================================================
--- (empty file)
+++ slf4j/trunk/jul-to-slf4j/pom.xml	Wed May 28 22:28:34 2008
@@ -0,0 +1,47 @@
+<project 
+  xmlns="http://maven.apache.org/POM/4.0.0" 
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+	<parent>
+		<groupId>org.slf4j</groupId>
+		<artifactId>slf4j-parent</artifactId>
+    	<version>1.5.1-SNAPSHOT</version>
+	</parent>
+	
+	<modelVersion>4.0.0</modelVersion>
+
+	<groupId>org.slf4j</groupId>
+	<artifactId>jul-to-slf4j</artifactId>
+
+	<packaging>jar</packaging>
+	<name>JUL to SLF4J bridge</name>
+
+	<url>http://www.slf4j.org</url>
+	<description>
+		JUL to SLF4J bridge
+	</description>
+
+  <dependencies>
+	  <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+		</dependency>
+  </dependencies>
+
+  <build>
+		<plugins>
+
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.4</source>
+					<target>1.4</target>
+				</configuration>
+			</plugin>
+
+    </plugins>
+  </build>
+
+</project>
\ No newline at end of file



More information about the slf4j-dev mailing list