[slf4j-dev] svn commit: r433 - slf4j/trunk

ceki at slf4j.org ceki at slf4j.org
Mon Nov 21 18:09:55 CET 2005


Author: ceki
Date: Mon Nov 21 18:09:54 2005
New Revision: 433

Modified:
   slf4j/trunk/build.xml
Log:
minor change to allow standalone compilation.

Modified: slf4j/trunk/build.xml
==============================================================================
--- slf4j/trunk/build.xml	(original)
+++ slf4j/trunk/build.xml	Mon Nov 21 18:09:54 2005
@@ -97,7 +97,17 @@
   	</fail>
 	</target>
 
+	<target name="test-compile.jar" depends="init">
+		<antcall target="compile-IMPL">
+			<param name="IMPL" value="Simple" />
+			<param name="IMPL.CLASSPATH" value="regular.classpath" />
+		</antcall>
 
+		<jar jarfile="test-compile.jar" basedir="${tmp.javac.dest}" 
+			 includes="${SLF4J_STEM}/**/*Binder.class">
+		</jar>
+	</target>
+		
 	<target name="compile.jar" depends="init">
 		<antcall target="compile-IMPL">
 			<param name="IMPL" value="Simple" />
@@ -105,7 +115,7 @@
 		</antcall>
 
 		<jar jarfile="compile.jar" basedir="${tmp.javac.dest}" 
-			 includes="${SLF4J_STEM}/**/*.class">
+			 includes="${SLF4J_STEM}/impl/Static*Binder.class">
 		</jar>
 	</target>
 



More information about the slf4j-dev mailing list