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

(-)a/apisupport.harness/release/README (+3 lines)
Lines 1044-1049 Link Here
1044
1044
1045
compile-test-single - compile selected unit test classes (F9).
1045
compile-test-single - compile selected unit test classes (F9).
1046
1046
1047
create-update-center - generates NBM and updatecenter XML descriptor for a 
1048
single module.
1049
1047
debug - build module and then start target platform in debug mode. Use from
1050
debug - build module and then start target platform in debug mode. Use from
1048
within the IDE (there is a context menu item for it) to debug the app.
1051
within the IDE (there is a context menu item for it) to debug the app.
1049
1052
(-)a/apisupport.harness/release/build.xml (+26 lines)
Lines 296-299 Link Here
296
        <nbinstaller module="${cluster}/${module.jar}" action="reinstall"/>
296
        <nbinstaller module="${cluster}/${module.jar}" action="reinstall"/>
297
    </target>
297
    </target>
298
298
299
    <target name="create-update-center" depends="taskdefs, nbm" 
300
         description="generates NBM and update center XML descriptor for a single module">
301
302
        <mkdir dir="${update.dir}"/>
303
        <pathfileset id="updater.jar">
304
            <path refid="cluster.path.id"/>
305
            <filename name="modules/ext/updater.jar"/>
306
        </pathfileset>
307
        <makeupdatedesc desc="${update.dir}/updates.xml" distbase="." automaticgrouping="true" uselicenseurl="${use.license.url.in.catalog}">
308
            <fileset dir="./build">
309
                <include name="*.nbm"/>
310
                <include name="*.jar"/>
311
            </fileset>
312
            <updaterjar>
313
                <resources refid="updater.jar"/>
314
            </updaterjar>
315
        </makeupdatedesc>
316
        <!--Copy the files to the folder-->
317
        <copy todir="${update.dir}">
318
            <fileset dir="./build">
319
                <include name="*.nbm"/>
320
                <include name="*.jar"/>
321
            </fileset>
322
        </copy>
323
    </target>
324
299
</project>
325
</project>

Return to bug 185283