Reply only to you....
Most of us build the WS components standalone and then copy them into VWP
within NB 6.0. At least, I've never figured out how to make all that
NB module
stuff work. If interested in this approach, I've attached my ws2nb
script (which
just helps me remember where to copy the newly built WS jars into NB). Feel
free to disregard this approach. Also, this works only if you are bug
fixing
components already in the VWP palette; the very new componens are yet in
the palette.
Note this is for NB 6.0 only.
#!/bin/sh
# Script to copy Woodstock jars from build area to Netbeans
#
# Syntax: ws2nb [-s <source_dir>] [-t <target_dir>]
#
# If -s omitted, child workspace build directory is used.
# If -t omitted, internal default Netbeans installation directory is used.
# See NB_DIR below.
# Change the following to the Netbeans installation directory...
NB_DIR=/opt/netbeans-6.0m10
# Set default locations based on workspace and NB installation...
SRC_DIR=${SRC}/master/build/ship/lib
TGT_DIR=${NB_DIR}/visualweb1/modules/ext
if [ "$1" = "-s" ]; then
shift 1
SRC_DIR=$1
shift 1
fi
if [ "$1" = "-t" ]; then
shift 1
TGT_DIR=$1
shift 1
fi
if [ ! -d ${SRC_DIR} ]; then
echo "Source directory does not exist: ${SRC_DIR}"
exit 1
fi
if [ ! -d ${TGT_DIR} ]; then
echo "Target directory does not exist: ${TGT_DIR}"
exit 1
fi
NUM=0
if [ -f ${SRC_DIR}/webui-jsf.jar ]; then
echo "Copying webui-jsf ..."
cp ${SRC_DIR}/webui-jsf.jar ${TGT_DIR}
fi
if [ -f ${SRC_DIR}/webui-jsf-dt.jar ]; then
echo "Copying webui-jsf-dt ..."
cp ${SRC_DIR}/webui-jsf-dt.jar ${TGT_DIR}
fi
if [ -f ${SRC_DIR}/webui-jsf-suntheme.jar ]; then
echo "Copying webui-jsf-suntheme ..."
cp ${SRC_DIR}/webui-jsf-suntheme.jar ${TGT_DIR}
fi
exit 0