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 33614
Collapse All | Expand All

(-)nbbuild/build.properties (+22 lines)
Lines 290-292 Link Here
290
config.modules.l10nkit=${config.modules.stable}, \
290
config.modules.l10nkit=${config.modules.stable}, \
291
        installer
291
        installer
292
config.fixedmodules.l10nkit=${config.fixedmodules.stable}
292
config.fixedmodules.l10nkit=${config.fixedmodules.stable}
293
294
# moduleconfig for MultiLingual build of all stable modules (IDE + update centre)
295
config.modules.stable-au-ML=${config.modules.stable}, \
296
        ant/docs, \
297
        corba, \
298
        filecopy, \
299
        java/fastjavac, \
300
        jndi, \
301
        junit, \
302
        rmi
303
config.fixedmodules.stable-au-ML=${config.fixedmodules.stable}
304
305
# moduleconfig for build of all stable modules for stable update centre
306
config.modules.stable-au=${config.modules.stable-au-ML}, \
307
        a11y, \
308
        apisupport, \
309
        jellytools, \
310
        jemmy, \
311
        jemmysupport, \
312
        testtools, \
313
        xtest
314
config.fixedmodules.stable-au=${config.fixedmodules.stable-au-ML}
(-)nbbuild/build.xml (+4 lines)
Lines 293-298 Link Here
293
    <echo message="Building module webclient..."/>
293
    <echo message="Building module webclient..."/>
294
    <ant dir="../extbrowser/webclient" target="netbeans"/>
294
    <ant dir="../extbrowser/webclient" target="netbeans"/>
295
  </target>
295
  </target>
296
  <target name="all-filecopy" depends="all-openide,all-openide/io,all-openide/execution,all-openide/deprecated">
297
    <echo message="Building module filecopy..."/>
298
    <ant dir="../filecopy" target="netbeans"/>
299
  </target>
296
  <target name="all-form" depends="all-openide,all-java,all-java/srcmodel,all-java/api,all-openide/compiler,all-openide/execution">
300
  <target name="all-form" depends="all-openide,all-java,all-java/srcmodel,all-java/api,all-openide/compiler,all-openide/execution">
297
    <echo message="Building module form..."/>
301
    <echo message="Building module form..."/>
298
    <ant dir="../form" target="netbeans"/>
302
    <ant dir="../form" target="netbeans"/>
(-)nbbuild/mlbuild/build.xml (-3 / +12 lines)
Lines 9-16 Link Here
9
9
10
The Original Code is NetBeans.
10
The Original Code is NetBeans.
11
The Initial Developer of the Original Code is Sun Microsystems, Inc.
11
The Initial Developer of the Original Code is Sun Microsystems, Inc.
12
Portions Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
12
Portions Copyright 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
13
Portions Copyright 2001-2002 Vincent Brabant, Maxym Mykhalchuk.
14
-->
13
-->
15
14
16
<project basedir="." default="buildide" name="translatedfiles">
15
<project basedir="." default="buildide" name="translatedfiles">
Lines 26-31 Link Here
26
  <property name="locjhindexer.locales" value="${locales}"/>
25
  <property name="locjhindexer.locales" value="${locales}"/>
27
26
28
  <property name="netbeans.dest" value="netbeans"/>
27
  <property name="netbeans.dest" value="netbeans"/>
28
  <property name="aumoduleconfig" value="stable-au-ML"/>
29
  <property name="idemoduleconfig" value="stable"/>
29
30
30
  <target name="makelocjars">
31
  <target name="makelocjars">
31
    <echo message="Building all localized jars"/>
32
    <echo message="Building all localized jars"/>
Lines 45-56 Link Here
45
  <target name="buildide" depends="copylocalized">
46
  <target name="buildide" depends="copylocalized">
46
    <ant dir=".." target="build-nozip">
47
    <ant dir=".." target="build-nozip">
47
      <property name="netbeans.japanese" value="true"/>
48
      <property name="netbeans.japanese" value="true"/>
49
      <property name="moduleconfig" value="${idemoduleconfig}"/>
48
    </ant>
50
    </ant>
49
  </target>
51
  </target>
50
  
52
  
51
  <target name="buildnbms" depends="buildide">
53
  <target name="buildnbms" depends="copylocalized">
54
    <!-- build all modules for NBMs build -->
55
    <ant dir=".." target="build-nozip">
56
      <property name="netbeans.japanese" value="true"/>
57
      <property name="moduleconfig" value="${aumoduleconfig}"/>
58
    </ant>
59
    <!-- build NBMs -->
52
    <ant dir=".." target="build-nbms">
60
    <ant dir=".." target="build-nbms">
53
      <property name="netbeans.japanese" value="true"/>
61
      <property name="netbeans.japanese" value="true"/>
62
      <property name="moduleconfig" value="${aumoduleconfig}"/>
54
    </ant>
63
    </ant>
55
  </target>
64
  </target>
56
65

Return to bug 33614