sandbox/old-modules/help/build.xml
branchdonation_review
changeset 1043 57843026e60b
parent 1027 205b7632914c
parent 1040 f7b6892fd754
child 1044 7feb751ba76b
     1.1 --- a/sandbox/old-modules/help/build.xml	Mon Dec 19 11:37:36 2016 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,48 +0,0 @@
     1.4 -<?xml version="1.0" encoding="UTF-8"?>
     1.5 -<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
     1.6 -<!-- for some information on what you could do (e.g. targets to override). -->
     1.7 -<!-- If you delete this file and reopen the project it will be recreated. -->
     1.8 -<project name="org.netbeans.modules.jackpot30.help" default="netbeans" basedir=".">
     1.9 -    <description>Builds, tests, and runs the project org.netbeans.modules.jackpot30.help.</description>
    1.10 -    <import file="nbproject/build-impl.xml"/>
    1.11 -    <import file="${suite.dir}/findbugs-import.xml"/>
    1.12 -
    1.13 -    <target name="help-init">
    1.14 -        <property environment="ENV." />
    1.15 -        <condition property="hasLaTeX2HTML">
    1.16 -            <available file="latex2html" filepath="${ENV.PATH}" />
    1.17 -        </condition>
    1.18 -    </target>
    1.19 -
    1.20 -    <target name="compile-help" depends="help-init" if="hasLaTeX2HTML">
    1.21 -        <mkdir dir="${basedir}/build/help/org/netbeans/modules/jackpot30/help/docs" />
    1.22 -
    1.23 -        <copy file="jackpot30-helpset.xml" todir="${basedir}/build/help/org/netbeans/modules/jackpot30/help/docs" />
    1.24 -        
    1.25 -        <exec executable="latex2html">
    1.26 -            <arg value="-antialias" />
    1.27 -            <arg value="-antialias_text" />
    1.28 -            <arg value="-dir" />
    1.29 -            <arg value="build/help/org/netbeans/modules/jackpot30/help/docs" />
    1.30 -            <arg value="jackpot30-help.tex" />
    1.31 -        </exec>
    1.32 -
    1.33 -        <java classname="org.netbeans.modules.jackpot30.help.CreateMap"
    1.34 -              classpath="build/classes">
    1.35 -            <arg value="${basedir}/build/help/org/netbeans/modules/jackpot30/help/docs" />
    1.36 -        </java>
    1.37 -
    1.38 -        <mkdir dir="${suite.dir}/build/cluster/modules/docs" />
    1.39 -
    1.40 -        <jar destfile="${suite.dir}/build/cluster/modules/docs/org-netbeans-modules-jackpot30-help.jar" basedir="${basedir}/build/help">
    1.41 -
    1.42 -        </jar>
    1.43 -    </target>
    1.44 -
    1.45 -    <target name="compile" depends="projectized-common.compile,compile-help" />
    1.46 -
    1.47 -    <target name="test" />
    1.48 -    <target name="test-coverage" />
    1.49 -    <target name="coverage-report" />
    1.50 -
    1.51 -</project>