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.

Bug 26563

Summary: Build all without creating final zip file
Product: www Reporter: thierrylach <thierrylach>
Component: Builds & RepositoriesAssignee: Michal Zlamal <mzlamal>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P4    
Version: 3.x   
Hardware: All   
OS: All   
Issue Type: TASK Exception Reporter:
Attachments: Patch for new build target

Description thierrylach 2002-08-16 17:48:15 UTC
Patch attached.
Comment 1 thierrylach 2002-08-16 17:48:41 UTC
Created attachment 7116 [details]
Patch for new build target
Comment 2 Jesse Glick 2002-08-16 18:15:36 UTC
This would be useful I think.

BTW my usual driver script for running & testing a build looks like this:

#!/bin/sh
# Use 1.3.1 for build, though 1.4.0_01 is default on path:
export JAVA_HOME=/space/jdk1.3.1
export PATH=/space/jdk1.3.1/bin:$PATH
nice /space/ant14/bin/ant -emacs -f
/space/src/nb_all/nbbuild/build.xml -Dbuild.compiler=modern real-clean
build-nozip sanity-check
nice /space/ant14/bin/ant -emacs -f
/space/src/nb_all/xtest/instance/build.xml cleantests buildtests runtests

Might be nice to wrap this all up into an "idiotproof" target that
would verify that you are using JDK 1.3 (you still have to set this
up, it would just let you know if you forgot), check that you are
using Ant >= 1.4.1 and the Javac compiler (not Jikes), and do a full
clean build and XTest run.
Comment 3 thierrylach 2002-08-16 18:31:40 UTC
Would it be reasonable to make the default build 
target "all-nozip" instead of "all" ?
Comment 4 Michal Zlamal 2002-08-20 14:23:42 UTC
I'll add "all-nozip" target. All other I'll leave on future 
discussion.
Comment 5 Michal Zlamal 2002-08-20 15:46:16 UTC
I added target "nozip-build". I'll leave this issue open 
till we resolve other sugestions.
Comment 6 Jesse Glick 2003-04-25 20:06:59 UTC
I am working on the convenience script myself.