[slf4j-dev] svn commit: r110 - slf4j/branches/marker-experiment
ceki at slf4j.org
ceki at slf4j.org
Mon Jul 4 21:31:00 CEST 2005
Author: ceki
Date: Mon Jul 4 21:30:59 2005
New Revision: 110
Modified:
slf4j/branches/marker-experiment/build.xml
Log:
Adapting build file to new folder structure.
Modified: slf4j/branches/marker-experiment/build.xml
==============================================================================
--- slf4j/branches/marker-experiment/build.xml (original)
+++ slf4j/branches/marker-experiment/build.xml Mon Jul 4 21:30:59 2005
@@ -28,7 +28,7 @@
slf4j-nop.jar - build the jar file of the same name.
slf4j-simple.jar - build the jar file of the same name.
slf4j-jdk14.jar - build the jar file of the same name.
-
+ jar - all of the above jar files
</echo>
</target>
@@ -72,18 +72,26 @@
</fileset>
<filterset><filter token="IMPL" value="${IMPL}"/></filterset>
</copy>
+
+ <copy todir="tmp/src">
+ <fileset dir="src/java">
+ <include name="**/*.java"/>
+ </fileset>
+ </copy>
+
<javac srcdir="${tmp.java.source.dir}"
destdir="${tmp.javac.dest}"
deprecation="on"
includes="${SLF4J_STEM}/*.java,
- ${SLF4J_STEM}/impl/MessageFormatter.java,
+ ${SLF4J_STEM}/impl/MessageFormatter.java,
${SLF4J_STEM}/impl/${impl}*.class"
debug="${debug}">
</javac>
<jar jarfile="${jar-name}" basedir="${tmp.javac.dest}"
includes="${SLF4J_STEM}/*.class,
+ ${SLF4J_STEM}/spi/LoggerAdapterFactory.class,
${SLF4J_STEM}/impl/MessageFormatter.class,
${SLF4J_STEM}/impl/${IMPL}*.class"
>
@@ -99,6 +107,7 @@
</target>
+
<target name="slf4j-nop.jar">
<antcall target="slf4j-IMPL.jar">
<param name="IMPL" value="NOP"/>
More information about the slf4j-dev
mailing list