This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 31287
Collapse All | Expand All

(-)xml/build.xml (-6 / +1 lines)
Lines 23-40 Link Here
23
    <property name="build.compiler.debug" value="on"/>
23
    <property name="build.compiler.debug" value="on"/>
24
24
25
25
26
    <target name="init">
27
        <property name="buildnumber" value="dev"/>
28
        <echo message="buildnumber = ${buildnumber}"/>
29
    </target>
30
31
    <target name="compile">
26
    <target name="compile">
32
        <!-- There is dependency prpblem core dependes on tax/lib and tax depends on core! -->
27
        <!-- There is dependency prpblem core dependes on tax/lib and tax depends on core! -->
33
        <for-each locations="tax/lib"/>
28
        <for-each locations="tax/lib"/>
34
        <for-each locations="${submodules}"/>
29
        <for-each locations="${submodules}"/>
35
    </target>
30
    </target>
36
31
37
    <target name="jars" depends="init,compile">
32
    <target name="jars" depends="compile">
38
        <for-each locations="${submodules}"/>
33
        <for-each locations="${submodules}"/>
39
    </target>
34
    </target>
40
35
(-)xml/api/build.xml (-1 / +4 lines)
Lines 35-41 Link Here
35
    <target name="init">
35
    <target name="init">
36
        <property file="${xml_root}/spec-vers.properties"/>
36
        <property file="${xml_root}/spec-vers.properties"/>
37
        <filter token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
37
        <filter token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
38
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
38
        <tstamp>
39
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
40
        </tstamp>
41
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
39
    </target>
42
    </target>
40
43
41
    <target name="compile"> 
44
    <target name="compile"> 
(-)xml/api/samples/antbridge/build.xml (-1 / +4 lines)
Lines 43-49 Link Here
43
43
44
  <target name="jars" depends="compile">
44
  <target name="jars" depends="compile">
45
    <mkdir dir="netbeans/modules/eager"/>
45
    <mkdir dir="netbeans/modules/eager"/>
46
    <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
46
    <tstamp>
47
      <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
48
    </tstamp>
49
    <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
47
    <copy file="manifest.mf" tofile="manifest-subst.mf" filtering="on"/>
50
    <copy file="manifest.mf" tofile="manifest-subst.mf" filtering="on"/>
48
    <locjar jarfile="netbeans/modules/eager/ant-xml.jar"
51
    <locjar jarfile="netbeans/modules/eager/ant-xml.jar"
49
            manifest="manifest-subst.mf"
52
            manifest="manifest-subst.mf"
(-)xml/catalog/build.xml (-1 / +4 lines)
Lines 40-46 Link Here
40
        <filter     token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
40
        <filter     token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
41
        <filter token="CATALOG_SPEC_VERS_SUBST" value="${xml.catalog.specification.version}"/>
41
        <filter token="CATALOG_SPEC_VERS_SUBST" value="${xml.catalog.specification.version}"/>
42
        <filter    token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
42
        <filter    token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
43
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
43
        <tstamp>
44
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
45
        </tstamp>
46
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
44
        <ant dir="${nbroot}/xml/external" target="unscramble"/>
47
        <ant dir="${nbroot}/xml/external" target="unscramble"/>
45
    </target>
48
    </target>
46
49
(-)xml/core/build.xml (-1 / +4 lines)
Lines 40-46 Link Here
40
        <property file="${xml_root}/spec-vers.properties"/>
40
        <property file="${xml_root}/spec-vers.properties"/>
41
        <filter  token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
41
        <filter  token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
42
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
42
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
43
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
43
        <tstamp>
44
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
45
        </tstamp>
46
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
44
    </target>
47
    </target>
45
48
46
    <target name="compile">
49
    <target name="compile">
(-)xml/css/build.xml (-1 / +4 lines)
Lines 38-44 Link Here
38
        <property file="${xml_root}/spec-vers.properties"/>
38
        <property file="${xml_root}/spec-vers.properties"/>
39
        <filter token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
39
        <filter token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
40
        <filter token="CSS_SPEC_VERS_SUBST" value="${xml.css.specification.version}"/>
40
        <filter token="CSS_SPEC_VERS_SUBST" value="${xml.css.specification.version}"/>
41
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
41
        <tstamp>
42
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
43
        </tstamp>
44
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
42
        <ant dir="${nbroot}/xml/external" target="unscramble"/>
45
        <ant dir="${nbroot}/xml/external" target="unscramble"/>
43
    </target>
46
    </target>
44
47
(-)xml/schema/build.xml (-1 / +4 lines)
Lines 42-48 Link Here
42
        <filter token="SCHEMA_SPEC_VERS_SUBST" value="${xml.schema.specification.version}"/>
42
        <filter token="SCHEMA_SPEC_VERS_SUBST" value="${xml.schema.specification.version}"/>
43
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
43
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
44
        <filter token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
44
        <filter token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
45
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
45
        <tstamp>
46
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
47
        </tstamp>
48
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
46
    </target>
49
    </target>
47
50
48
    <target name="compile">
51
    <target name="compile">
(-)xml/tax/build.xml (-1 / +4 lines)
Lines 39-45 Link Here
39
        <filter token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
39
        <filter token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
40
        <filter token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
40
        <filter token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
41
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
41
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
42
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
42
        <tstamp>
43
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
44
        </tstamp>
45
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
43
    </target>
46
    </target>
44
47
45
    <target name="compile">
48
    <target name="compile">
(-)xml/tax/lib/build.xml (-3 / +4 lines)
Lines 34-44 Link Here
34
    </target>
34
    </target>
35
35
36
    <target name="init" depends="set-buildnumber">
36
    <target name="init" depends="set-buildnumber">
37
        <echo message="buildnumber = ${buildnumber}"/>
38
39
        <property file="${xml_root}/spec-vers.properties"/>
37
        <property file="${xml_root}/spec-vers.properties"/>
40
        <filter token="TAX_LIB_SPEC_VERS_SUBST" value="${xml.tax.lib.specification.version}"/>
38
        <filter token="TAX_LIB_SPEC_VERS_SUBST" value="${xml.tax.lib.specification.version}"/>
41
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
39
        <tstamp>
40
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
41
        </tstamp>
42
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
42
        <ant dir="${nbroot}/xml/external" target="unscramble"/>
43
        <ant dir="${nbroot}/xml/external" target="unscramble"/>
43
    </target>
44
    </target>
44
45
(-)xml/text-edit/build.xml (-1 / +4 lines)
Lines 42-48 Link Here
42
        <filter  token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
42
        <filter  token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
43
        <filter token="TEXT_SPEC_VERS_SUBST" value="${xml.text-edit.specification.version}"/>
43
        <filter token="TEXT_SPEC_VERS_SUBST" value="${xml.text-edit.specification.version}"/>
44
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
44
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
45
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
45
        <tstamp>
46
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
47
        </tstamp>
48
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
46
    </target>
49
    </target>
47
50
48
    <target name="compile">
51
    <target name="compile">
(-)xml/tools/build.xml (-1 / +4 lines)
Lines 42-48 Link Here
42
        <filter token="TOOLS_SPEC_VERS_SUBST" value="${xml.tools.specification.version}"/>
42
        <filter token="TOOLS_SPEC_VERS_SUBST" value="${xml.tools.specification.version}"/>
43
        <filter  token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
43
        <filter  token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
44
        <filter token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
44
        <filter token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
45
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
45
        <tstamp>
46
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
47
        </tstamp>
48
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
46
    </target>
49
    </target>
47
50
48
    <target name="compile">
51
    <target name="compile">
(-)xml/tree-edit/build.xml (-1 / +4 lines)
Lines 43-49 Link Here
43
        <filter token="TREE_SPEC_VERS_SUBST" value="${xml.tree-edit.specification.version}"/>
43
        <filter token="TREE_SPEC_VERS_SUBST" value="${xml.tree-edit.specification.version}"/>
44
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
44
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
45
        <filter  token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
45
        <filter  token="TAX_SPEC_VERS_SUBST" value="${xml.tax.specification.version}"/>
46
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
46
        <tstamp>
47
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
48
        </tstamp>
49
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
47
    </target>
50
    </target>
48
51
49
    <target name="compile">
52
    <target name="compile">
(-)xml/xsl/build.xml (-1 / +4 lines)
Lines 42-48 Link Here
42
        <filter  token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
42
        <filter  token="API_SPEC_VERS_SUBST" value="${xml.api.specification.version}"/>
43
        <filter  token="XSL_SPEC_VERS_SUBST" value="${xml.xsl.specification.version}"/>
43
        <filter  token="XSL_SPEC_VERS_SUBST" value="${xml.xsl.specification.version}"/>
44
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
44
        <filter token="CORE_SPEC_VERS_SUBST" value="${xml.core.specification.version}"/>
45
        <filter token="BUILD_NUMBER_SUBST" value="${buildnumber}"/>
45
        <tstamp>
46
            <format property="xmlbuildnumber" pattern="yyyyMMdd"/>
47
        </tstamp>
48
        <filter token="BUILD_NUMBER_SUBST" value="${xmlbuildnumber}"/>
46
    </target>
49
    </target>
47
50
48
    <target name="compile">
51
    <target name="compile">

Return to bug 31287