dacarver | 647c735 | 2009-08-27 01:37:31 +0000 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- ====================================================================== |
| 3 | Jul 21, 2008 6:46:02 PM |
| 4 | |
| 5 | SDK Documentation |
| 6 | Builds SDK TOC Documentation using JELDoclet. |
| 7 | |
| 8 | dcarver |
| 9 | ====================================================================== --> |
| 10 | <project name="SDK Documentation" default="default"> |
| 11 | <description> |
| 12 | Builds SDK TOC Documentation using JELDoclet. |
| 13 | </description> |
| 14 | |
| 15 | <property name="workspace" location="."/> |
| 16 | <property name="workspaceloc" location=".."/> |
| 17 | |
| 18 | <!-- ================================= |
| 19 | target: default |
| 20 | ================================= --> |
| 21 | <target name="default" description="Builds SDK TOC Documentation using JELDoclet."> |
| 22 | |
| 23 | <javadoc destdir="doc" package="true" docletpath="${workspace}/lib/jeldoclet.jar"> |
| 24 | <fileset dir="${workspaceloc}"> |
| 25 | <include name="org.eclipse.wst.xml.xpath2.processor/src/org/eclipse/wst/xml/xpath2/processor/*.java"/> |
| 26 | <include name="org.eclipse.wst.xml.xpath2.processor/src/org/eclipse/wst/xml/xpath2/processor/ast/*.java"/> |
| 27 | <include name="org.eclipse.wst.xml.xpath2.processor/src/org/eclipse/wst/xml/xpath2/processor/function/*.java"/> |
| 28 | <include name="org.eclipse.wst.xml.xpath2.processor/src/org/eclipse/wst/xml/xpath2/processor/internal/types/*.java"/> |
| 29 | </fileset> |
| 30 | <doclet name="com.jeldoclet.JELDoclet"/> |
| 31 | </javadoc> |
| 32 | |
| 33 | <xslt basedir="." style="doc/jeltohtml.xsl" in="doc/jel.xml" out="doc/html/deleteme.html"> |
| 34 | <factory name="org.apache.xalan.processor.TransformerFactoryImpl"> |
| 35 | <attribute name="http://xml.apache.org/xalan/features/optimize" value="true"/> |
| 36 | |
| 37 | </factory> |
| 38 | </xslt> |
| 39 | |
| 40 | |
| 41 | <xslt style="doc/jeltotoc.xsl" in="doc/jel.xml" out="toc.xml" destdir="."> |
| 42 | <factory name="org.apache.xalan.processor.TransformerFactoryImpl"> |
| 43 | <attribute name="http://xml.apache.org/xalan/features/optimize" value="true"/> |
| 44 | </factory> |
| 45 | <param name="sdkname" expression="XSL Tools SDK Documentation"/> |
| 46 | </xslt> |
| 47 | |
| 48 | </target> |
| 49 | |
| 50 | </project> |