[FOray-commit] SF.net SVN: foray: [7748] trunk/foray/scripts/build.xml
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-06-30 23:31:13
|
Revision: 7748 Author: victormote Date: 2006-06-30 16:31:10 -0700 (Fri, 30 Jun 2006) ViewCVS: http://svn.sourceforge.net/foray/?rev=7748&view=rev Log Message: ----------- Fix remaining modular builds. Modified Paths: -------------- trunk/foray/scripts/build.xml Modified: trunk/foray/scripts/build.xml =================================================================== --- trunk/foray/scripts/build.xml 2006-06-30 23:01:11 UTC (rev 7747) +++ trunk/foray/scripts/build.xml 2006-06-30 23:31:10 UTC (rev 7748) @@ -92,7 +92,7 @@ <!-- =================================================================== --> <!-- Compiles all modules and packages them in a jar file --> <!-- =================================================================== --> - <target name="package-all" depends="all-modules, validate-web, package" + <target name="package-all" depends="clean, all-modules, validate-web, package" description="Build all FOray modules and package them in a jar file"/> <!-- =================================================================== --> @@ -653,7 +653,7 @@ <!-- =================================================================== --> <!-- Build the PDF module --> <!-- =================================================================== --> - <target name="pdf" depends="common" + <target name="pdf" depends="ps" description="Compile the pdf module"> <ant antfile="${foray.home}/foray-pdf/scripts/build.xml" inheritall="false" @@ -689,8 +689,7 @@ <!-- =================================================================== --> <!-- Build the Output module (unadvertised) --> <!-- =================================================================== --> - <target name="output" depends="common" - description="Compile the output module"> + <target name="output" depends="mif"> <ant antfile="${foray.home}/foray-output/scripts/build.xml" inheritall="false" target="package"> @@ -699,9 +698,20 @@ </target> <!-- =================================================================== --> + <!-- Build the Layout module (unadvertised) --> + <!-- =================================================================== --> + <target name="layout" depends="common"> + <ant antfile="${foray.home}/foray-layout/scripts/build.xml" + inheritall="false" + target="package"> + <property name="foray.config" value="${foray.config}"/> + </ant> + </target> + + <!-- =================================================================== --> <!-- Build the Pioneer module --> <!-- =================================================================== --> - <target name="pioneer" depends="output" + <target name="pioneer" depends="layout" description="Compile the pioneer module"> <ant antfile="${foray.home}/foray-pioneer/scripts/build.xml" inheritall="false" @@ -713,7 +723,7 @@ <!-- =================================================================== --> <!-- Build the Render module --> <!-- =================================================================== --> - <target name="render" depends="common" + <target name="render" depends="ps, output" description="Compile the render module"> <ant antfile="${foray.home}/foray-render/scripts/build.xml" inheritall="false" @@ -734,18 +744,6 @@ </ant> </target> - <!-- =================================================================== --> - <!-- Build the Application module --> - <!-- =================================================================== --> - <target name="app" depends="common" - description="Compile the app module"> - <ant antfile="${foray.home}/foray-app/scripts/build.xml" - inheritall="false" - target="package"> - <property name="foray.config" value="${foray.config}"/> - </ant> - </target> - </project> <!-- Last Line of File --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |