ovidiu 02/02/15 17:18:28 Modified: src/scratchpad/schecoon build.xml Log: Copy logicsheets in the WEB-INF/classes and add them to the jar file. Use src.dir instead of build.dir. Revision Changes Path 1.7 +9 -3 xml-cocoon2/src/scratchpad/schecoon/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/xml-cocoon2/src/scratchpad/schecoon/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- build.xml 25 Jan 2002 23:00:34 -0000 1.6 +++ build.xml 16 Feb 2002 01:18:28 -0000 1.7 @@ -107,6 +107,12 @@ <!-- =================================================================== --> <target name="compile" depends="prepare" description="Compiles the source code"> + <copy todir="${build.dest}"> + <fileset dir="${src.dir}"> + <include name="**/*.xsl"/> + </fileset> + </copy> + <javac srcdir="${src.dir}" destdir="${build.dest}" debug="${debug}" @@ -227,7 +233,7 @@ <!-- =================================================================== --> <target name="javadocs_check"> <uptodate property="javadocs.notrequired" targetfile="${build.javadocs}/packages.html" > - <srcfiles dir= "${build.src}" includes="**/*.java"/> + <srcfiles dir= "${src.dir}" includes="**/*.java"/> </uptodate> </target> @@ -238,7 +244,7 @@ <echo message="-------------------------------------------------------------"/> <echo message="Not rebuilding Javadocs, as they are up-to-date:"/> <echo message=" ${build.javadocs}/packages.html is more recent than"/> - <echo message=" ${build.src}/**/*.java"/> + <echo message=" ${src.dir}/**/*.java"/> <echo message="-------------------------------------------------------------"/> </target> @@ -250,7 +256,7 @@ description="Generates the API documentation"> <mkdir dir="${build.javadocs}"/> <javadoc packagenames="${packages}" - sourcepath="${build.src}" + sourcepath="${src.dir}" destdir="${build.javadocs}" author="true" version="true"
---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]