[slf4j-dev] svn commit: r241 - in slf4j/trunk: . src/pom
ceki at slf4j.org
ceki at slf4j.org
Sun Aug 28 21:21:58 CEST 2005
Author: ceki
Date: Sun Aug 28 21:21:57 2005
New Revision: 241
Added:
slf4j/trunk/ibiblio.xml
slf4j/trunk/src/pom/
slf4j/trunk/src/pom/project-jdk14.xml
slf4j/trunk/src/pom/project-nop.xml
slf4j/trunk/src/pom/project-simple.xml
Log:
ibiblio related scripts
Added: slf4j/trunk/ibiblio.xml
==============================================================================
--- (empty file)
+++ slf4j/trunk/ibiblio.xml Sun Aug 28 21:21:57 2005
@@ -0,0 +1,48 @@
+
+<project name="ibiblio-SLF4J" default="bundle" basedir="." >
+
+
+ <property name="version" value="1.0-beta7"/>
+
+ <target name="bundle-IMPL" >
+
+ <mkdir dir="tmp/ibiblio"/>
+ <delete><fileset dir="tmp/ibiblio" includes="**/*"/></delete>
+
+ <mkdir dir="tmp/ibiblio"/>
+ <copy file="LICENSE.txt" tofile="tmp/ibiblio/LICENSE.txt"/>
+ <copy file="slf4j-${impl}.jar" tofile="tmp/ibiblio/slf4j-${impl}-${version}.jar"/>
+
+ <copy file="src/pom/project-${impl}.xml" tofile="tmp/ibiblio/project.xml">
+ <filterset><filter token="VERSION" value="${version}"/></filterset>
+ </copy>
+
+ <jar jarfile="tmp/slf4j-${impl}-${version}-bundle.jar" basedir="tmp/ibiblio"
+ includes="LICENSE.txt,
+ project.xml,
+ slf4j-${impl}-${version}.jar"/>
+ </target>
+
+ <target name="bundle" depends="nop, simple, jdk14">
+
+ </target>
+
+ <target name="nop">
+ <antcall target="bundle-IMPL">
+ <param name="impl" value="nop"/>
+ </antcall>
+ </target>
+
+ <target name="simple">
+ <antcall target="bundle-IMPL">
+ <param name="impl" value="simple"/>
+ </antcall>
+ </target>
+
+ <target name="jdk14">
+ <antcall target="bundle-IMPL">
+ <param name="impl" value="jdk14"/>
+ </antcall>
+ </target>
+
+</project>
\ No newline at end of file
Added: slf4j/trunk/src/pom/project-jdk14.xml
==============================================================================
--- (empty file)
+++ slf4j/trunk/src/pom/project-jdk14.xml Sun Aug 28 21:21:57 2005
@@ -0,0 +1,16 @@
+<?xml version='1.0' encoding='ISO-8859-1'?>
+<project>
+ <id>slf4j-jdk14</id>
+ <groupId>org.slf4j</groupId>
+ <name>slf4j-jdk14</name>
+ <currentVersion>@VERSION@</currentVersion>
+ <package>/org/slf4j</package>
+ <description>
+ See http://www.slf4j.org/
+
+ Javadocs for the NOPLogger are available at
+ http://www.slf4j.org/api/org/slf4j/impl/JDK14Logger.html
+
+ </description>
+</project>
+
Added: slf4j/trunk/src/pom/project-nop.xml
==============================================================================
--- (empty file)
+++ slf4j/trunk/src/pom/project-nop.xml Sun Aug 28 21:21:57 2005
@@ -0,0 +1,16 @@
+<?xml version='1.0' encoding='ISO-8859-1'?>
+<project>
+ <id>slf4j-nop</id>
+ <groupId>org.slf4j</groupId>
+ <name>slf4j-nop</name>
+ <currentVersion>@VERSION@</currentVersion>
+ <package>/org/slf4j</package>
+ <description>
+ See http://www.slf4j.org/
+
+ Javadocs for the NOPLogger are available at
+ http://www.slf4j.org/api/org/slf4j/impl/NOPLogger.html
+
+ </description>
+</project>
+
Added: slf4j/trunk/src/pom/project-simple.xml
==============================================================================
--- (empty file)
+++ slf4j/trunk/src/pom/project-simple.xml Sun Aug 28 21:21:57 2005
@@ -0,0 +1,16 @@
+<?xml version='1.0' encoding='ISO-8859-1'?>
+<project>
+ <id>slf4j-simple</id>
+ <groupId>org.slf4j</groupId>
+ <name>slf4j-simple</name>
+ <currentVersion>@VERSION@</currentVersion>
+ <package>/org/slf4j</package>
+ <description>
+ See http://www.slf4j.org/
+
+ Javadocs for the SimpleLogger are available at
+ http://www.slf4j.org/api/org/slf4j/impl/SimpleLogger.html
+
+ </description>
+</project>
+
More information about the slf4j-dev
mailing list