diff --git a/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT-headless.product b/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT-headless.product index 59d2e17ba02..af076e72161 100644 --- a/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT-headless.product +++ b/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT-headless.product @@ -203,7 +203,7 @@ United States, other countries, or both. - + diff --git a/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT.product b/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT.product index fac8ff018dd..797fc99ed5a 100644 --- a/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT.product +++ b/UI/org.eclipse.birt.report.designer.ui.rcp/BIRT.product @@ -203,7 +203,7 @@ United States, other countries, or both. - + diff --git a/build/org.eclipse.birt.releng.birtbuilder/bootstrap.sh b/build/org.eclipse.birt.releng.birtbuilder/bootstrap.sh deleted file mode 100755 index ba70795935f..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/bootstrap.sh +++ /dev/null @@ -1,378 +0,0 @@ -######################################################################################################################### -# Top-Level script to trigger the nightly build of BIRT -######################################################################################################################### -# -# Example 1: Start a N-build from master branch, signing jars from build.eclipse.org(committer user/passwd required), -# create update site under /local/home/birtbld/UpdateSite/4_2_2-N directory and skip unit test -# ./bootstrap.sh -BranchName master -sign -updateSite /local/home/birtbld/UpdateSite/4_2_2-N -noUnitTest N -# -# Example 2: Start a I-build from master branch, no signing, no unit test, plugins will be tagged automatically based on -# content change. Map files will tagged accordingly. With prepareSrc argument, build script will clone the repo -# before build starts and copy bundles into ${buildDirectory}, which will speed up the build process. -# ./bootstrap.sh -BranchName master -prepareSrc -updateSite /local/home/birtbld/UpdateSite/4_2_2-N -noUnitTest I -# -######################################################################################################################### - -######################################################## -# User specific environment and startup programs -######################################################## - -umask 002 - -BASE_PATH=.:/bin:/usr/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/X11R6/bin -LD_LIBRARY_PATH=. -BASH_ENV=$HOME/.bashrc -USERNAME=`whoami` -xhost +$HOSTNAME -DISPLAY=:1.0 -export DISPLAY - -ulimit -c unlimited -export USERNAME BASH_ENV LD_LIBRARY_PATH DISPLAY - -# no user name needed for github url, login credential controlled in local ssh config -GitRoot=ssh://git@github.com/eclipse -GitRoot_DTP=ssh://xgu@git.eclipse.org/gitroot/datatools - -# change the branch name for different build -BranchName=master -dtp_BranchName=master - -# change this when you change the build working folder -WORKING_DIR=/home/adb/releng.450 -LOG_FILE=adb.log - -#set the monitor file name which is used for uploading builds to eclipse.org -MONITOR_FILE=monitor.properties - -if [ "x"$ANT_HOME = "x" ]; then export ANT_HOME=/usr/local/apache-ant-1.7.0; fi -if [ "x"$JAVA_HOME = "x" ]; then export JAVA_HOME=/usr/local/jdk1.5.0_09; fi -export PATH=${PATH}:${ANT_HOME}/bin:/usr/local/bin - -######################################################################### -# Set default value of the bootclasspath attribute used in ant javac calls. -######################################################################### - -bootclasspath="/usr/local/j2sdk1.4.2_13/jre/lib/rt.jar:/usr/local/j2sdk1.4.2_13/jre/lib/jsse.jar" -bootclasspath_15="/usr/local/jdk1.5.0_09/jre/lib/rt.jar:/usr/local/jdk1.5.0_09/jre/lib/jsse.jar" -bootclasspath_16="/usr/local/jdk1.6.0/jre/lib/rt.jar:/usr/local/jdk1.6.0/jre/lib/jsse.jar" -jvm15_home="/usr/local/jdk1.5.0_09" -jvm16_home="/usr/local/jdk1.6.0" - -proc=$$ - -########################################################################## -# sets sign Ant property -########################################################################## -sign="" -# remote target folder for BIRT -signDirectory=/home/data/httpd/download-staging.priv/birt -# remote working folder, change if you use a different signer account. -signHomeDir=/home/data/users/zqian -# credential is in local bash config -signUsername=$SIGN_USER -signPassword=$SIGN_PASSWD -signServer=build.eclipse.org - -tagMaps="" - -#updateSite property setting -updateSite="" - -#flag used to build based on changes in map files -compareMaps="" - -#buildId - build name -buildId="" - -# tag for build contribution project containing .map files -mapVersionTag=$mapVersionTag - -# directory in which to export builder projects -builderDir=$WORKING_DIR/org.eclipse.birt.releng.birtbuilder -export builderDir - -# directory where to copy build -postingDirectory=$WORKING_DIR/../releng/BIRTOutput/BIRT4.4-download/4.4.2 - -# flag to indicate if test build -testBuild="" - -# value used in buildLabel and for text replacement in index.php template file -builddate=`date +%Y%m%d` -buildtime=`date +%H%M` -buildinfoDate=`date +%F%t%H:%M:%S` -buildinfounivDate=`date +%c%z` -timestamp=$builddate$buildtime - -echo "======[builddate]: $builddate " > $LOG_FILE -echo "======[buildtime]: $buildtime " >> $LOG_FILE -echo "======[timestamp]: $timestamp " >> $LOG_FILE - -######################################################## -# Check disk space before build starts -######################################################## - -source $builderDir/extras/DiskSpaceCheck.sh - -######################################################## -# process command line arguments -######################################################## - -usage="usage: $0 [-notify emailaddresses][-test][-buildDirectory directory][-buildId name][-tagMapFiles][-mapVersionTag tag][-builderTag tag][-bootclasspath path][-compareMaps][-skipPerf] [-skipTest][-updateSite site][-sign][-noUnitTest][CheckNewJars][-test] M|N|I|S|R" - -if [ $# -lt 1 ] -then - echo >&2 "$usage" - exit 1 -fi - -while [ $# -gt 0 ] -do - case "$1" in - -BranchName) BranchName="$2"; shift;; - -buildId) buildId="$2"; shift;; - -mapVersionTag) mapVersionTag="$2"; shift;; - -noAutoTag) noAutoTag=true;; - -ForceBuild) ForceBuild=true;; - -tagMapFiles) tagMaps="-DtagMaps=true";; - -skipPerf) skipPerf="-Dskip.performance.tests=true";; - -skipTest) skipTest="-Dskip.tests=true";; - -buildDirectory) builderDir="$2"; shift;; - -notify) recipients="$2"; shift;; - -test) testBuild="-Dnomail=true";; - -javadoc) javadoc="-DgenJavaDoc=true";; - -builderTag) buildProjectTags="$2"; shift;; - -noUnitTest) unitTest="-Dskip.unit.test=true";; - -compareMaps) compareMaps="-DcompareMaps=true";; - -updateSite) updateSite="-DupdateSite=$2";shift;; - -sign) sign="-Dsign=true";; - -prepareSrc) prepareSrc="-Dprepare.src.flag=true";; - -CheckNewJars) CheckNewJars="-DCheckNewJars=true";; - -skipNL) skipNL="-Dskip.build.NL=true";; - -*) - echo >&2 $usage - exit 1;; - *) break;; # terminate while loop - esac - shift -done - -# After the above the build type is left in $1. -buildType=$1 - -echo "======[buildType]: $buildType " >> $LOG_FILE -echo "======[BranchName]: $BranchName " >> $LOG_FILE -echo "======[dtp_BranchName]: $dtp_BranchName " >> $LOG_FILE - -############################################################### -# Sync build script from branch $BranchName before build starts -############################################################### - -#Pull or clone a branch from a repository -#Usage: pull repositoryURL branch -pull() { - mkdir -p $builderDir/gitClones - pushd $builderDir/gitClones - directory=$(basename $1 .git) - if [ ! -d $directory ]; then - echo git clone $1 - git clone $1 - fi - popd - pushd $builderDir/gitClones/$directory - - echo ">>git fetch" - git fetch - echo ">>git checkout $2" - git checkout $2 - echo ">>git pull origin $2" - git pull origin $2 - popd -} - -#rm -rf build - -# github doesn't support the "archive" command, we have to do a clone instead. -#git archive --format=tar --remote=$GitRoot/birt.git $BranchName build/org.eclipse.birt.releng.birtbuilder | tar -xf - - -echo ">>pulling latest source from $GitRoot/birt.git" -pull $GitRoot/birt.git $BranchName - -# update build script from repo -#cp -f build/org.eclipse.birt.releng.birtbuilder/buildAll.xml ./ -#cp -f build/org.eclipse.birt.releng.birtbuilder/build.xml ./ -#cp -rf build/org.eclipse.birt.releng.birtbuilder/eclipse ./ -#cp -rf build/org.eclipse.birt.releng.birtbuilder/extras ./ - -# Set default buildId if none explicitly set -if [ "$buildId" = "" ] -then - buildId=v$builddate-$buildtime -fi - -echo "======[buildId]: $buildId " >> $LOG_FILE - -#Set the tag to HEAD for Nightly builds -if [ "$buildType" = "N" ] -then - tag="-DfetchTag=CVS=HEAD,GIT=$BranchName" - versionQualifier="-DforceContextQualifier=$buildId" -fi - -echo "======[tag]: $tag" >> $USER.log -echo "======[versionQualifier]: $versionQualifier" >> $LOG_FILE - -# tag for exporting org.eclipse.releng.basebuilder -baseBuilderTag=$buildProjectTags -echo "======[baseBuilderTag]: $baseBuilderTag" >> $LOG_FILE - -# directory where features and plugins will be compiled -buildDirectory=$WORKING_DIR/src - -echo "======[buildDirectory]: $buildDirectory" >> $LOG_FILE - -mkdir $builderDir -cd $builderDir - -mkdir -p $postingDirectory/$buildId - - -############################################################### -# Auto tagging BIRT plugins and update mapfiles for I build -# If you are building outside BIRT, please use buildType 'N' -############################################################### - -if [ "$buildType" == "N" -o "$noAutoTag" ]; then - echo "Skipping auto plugins tagging for nightly build or -noAutoTag build" -else - pushd $builderDir - - #remove comments - rm -f repos-clean.txt clones.txt - echo "$GitRoot/birt.git $BranchName" > repos-clean.txt - - #clone or pull each repository and checkout the appropriate branch - while read line; do - #each line is of the form - set -- $line - pull $1 $2 - echo $1 | sed 's/ssh:.*@github.com/git:\/\/github.com/g' >> clones.txt - done < repos-clean.txt - - cat clones.txt| xargs /bin/bash extras/git-map.sh $builderDir/gitClones \ - $builderDir/gitClones > maps.txt - - #Trim out lines that don't require execution - grep -v ^OK maps.txt | grep -v ^Executed >run.txt - if ( cat run.txt | grep sed ); then - /bin/bash run.txt - #mkdir -p $builderDir/report - #cp report.txt $builderDir/report/report$buildId.txt - elif [ "$ForceBuild" == "true" ]; then - echo "Continue to build even if no bundles changed for -ForceBuild build" - else - echo "No change detected. Build ($buildId) is canceled" - exit - fi - popd -fi - - -echo buildId=$buildId > $MONITOR_FILE -echo timestamp=$timestamp >> $MONITOR_FILE -echo currentDay=$builddate >> $MONITOR_FILE -echo recipients=$recipients >> $MONITOR_FILE - -#the base command used to run AntRunner headless -antRunner="/usr/local/jdk1.6.0/bin/java -Xmx512m -jar ../org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.jar -Dosgi.os=linux -Dosgi.ws=gtk -Dosgi.arch=ppc -application org.eclipse.ant.core.antRunner" - -echo "======[antRunner]: $antRunner" >> $LOG_FILE - -######################################################################### -# Update the build info for build uploading. Please comment out this step -# if you are not going to upload this build to eclipse.org -######################################################################### -cd $builderDir -$builderDir/replaceBuildInfo.sh $buildinfoDate $buildinfounivDate - -#check out internal files from perforce -#ant -buildfile eclipse/helper.xml CheckoutFromP4 >> $LOG_FILE - -#full command with args -echo "tagMaps flag:" $tagMaps >> $LOG_FILE -echo $compareMaps >> $LOG_FILE -echo $sign >> $LOG_FILE - -######################################################################## -# Replace the eclipse related server name with local server name to -# speed up the build process. -# Please set $birtLocal to the same value as $birtEclipse if you are -# building outside BIRT. Do the same to $dtpLocal and $orbitLocal. -#-Dbirt.url.token=$birtEclipse \ -#-Dbirt.url.newvalue=$birtLocal \ -#-Ddtp.url.token=$dtpEclipse \ -#-Ddtp.url.newvalue=$dtpLocal \ -#-Dorbit.url.token=$orbitEclipse \ -#-Dorbit.url.newvalue=$orbitLocal \ -######################################################################## -#-Dbirt.url.token=$birtEclipse \ -#-Dbirt.url.newvalue=$birtLocal \ -#-Ddtp.url.token=$dtpEclipse \ -#-Ddtp.url.newvalue=$dtpLocal \ -#-Dorbit.url.token=$orbitEclipse \ -#-Dorbit.url.newvalue=$orbitLocal \ -#birtEclipse=git://git.eclipse.org -#birtLocal=git://192.168.218.226 -#dtpEclipse=git://git.eclipse.org -#dtpLocal=git://192.168.218.226 -#orbitEclipse=download.eclipse.org/tools -#orbitLocal=buildsha-win/software/platform - -######################################################################## -# Set up the full build command -# *remove the '-q' option if you want to see verbose info in the log* -######################################################################## -buildCommand="$antRunner -q -buildfile buildAll.xml $testBuild $compareMaps $unitTest $CheckNewJars $skipNL \ --Dbuild.runtimeOSGI=true -DallowBinaryCycles=true \ --DpostingDirectory=$postingDirectory \ --Dbootclasspath=$bootclasspath_16 -DbuildType=$buildType -D$buildType=true \ --DbuildId=$buildId -Dbuildid=$buildId -DbuildLabel=$buildId -Dtimestamp=$timestamp $skipTest $tagMaps \ --DJ2SE-1.5=$bootclasspath_15 -DJavaSE-1.6=$bootclasspath_16 -DlogExtension=.xml $javadoc $updateSite $sign $prepareSrc \ --Djava15-home=$bootclasspath_15 -DbuildDirectory=$WORKING_DIR/src \ --DbaseLocation=$WORKING_DIR/baseLocation -DbaseLocation.emf=$WORKING_DIR/baseLocation \ --DgroupConfiguration=true -DjavacVerbose=true \ --Dbasebuilder=$WORKING_DIR/org.eclipse.releng.basebuilder \ --Dtest.dir=$WORKING_DIR/unittest -Dp4.home=$WORKING_DIR/P4 \ --Djvm15_home=$jvm15_home -Djvm16_home=$jvm16_home -DmapTag.properties=$builderDir/mapTag.properties \ --Dbuild.date=$builddate -Dpackage.version=4_5_0 -DBranchVersion=4.5.0 -Dant.dir=$ANT_HOME/bin \ --DmapVersionTag=$BranchName \ --Ddtp.mapVersionTag=$dtp_BranchName \ --Dusername.sign=$signUsername -Dpassword.sign=$signPassword -Dhostname.sign=$signServer \ --Dhome.dir=$signHomeDir -Dsign.dir=$signDirectory \ --Dbuilder.dir=$builderDir -DupdateSiteConfig=gtk.linux.x86 \ --DmapGitRoot=$GitRoot \ --Ddtp.mapGitRoot=$GitRoot_DTP \ --Dskip.unit.test=true \ --DBirtRepoCache=git___github_com_eclipse_birt_git" - - -#capture command used to run the build -echo $buildCommand>command.txt - -#run the build -$buildCommand >> $LOG_FILE - -#retCode=$? -# -#if [ $retCode != 0 ] -#then -# echo "Build failed (error code $retCode)." -# exit -1 -#fi - -#clean up -#rm -rf $builderDir -#rm -rf $WORKING_DIR/src/$buildId - - diff --git a/build/org.eclipse.birt.releng.birtbuilder/build.xml b/build/org.eclipse.birt.releng.birtbuilder/build.xml deleted file mode 100644 index f71d667b482..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/build.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - timestamp=${timestamp} - buildType=${buildType} - buildId=${buildId} - buildLabel=${buildLabel} - - - - diff --git a/build/org.eclipse.birt.releng.birtbuilder/buildAll-package.xml b/build/org.eclipse.birt.releng.birtbuilder/buildAll-package.xml index ff395a61fa7..cf84cc9a2a5 100644 --- a/build/org.eclipse.birt.releng.birtbuilder/buildAll-package.xml +++ b/build/org.eclipse.birt.releng.birtbuilder/buildAll-package.xml @@ -397,7 +397,6 @@ - @@ -631,7 +630,6 @@ - diff --git a/build/org.eclipse.birt.releng.birtbuilder/buildAll.xml b/build/org.eclipse.birt.releng.birtbuilder/buildAll.xml deleted file mode 100644 index 7607c3a1ec3..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/buildAll.xml +++ /dev/null @@ -1,1453 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - lastMapTag=${buildId} - - - - - - - - - - - - - copy from: "${builder.dir}/gitClones/birt/releng/maps" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/org.eclipse.birt.releng.birtbuilder/eclipse/buildConfigs/birt/tools/BIRTDownloadSetup.xml b/build/org.eclipse.birt.releng.birtbuilder/eclipse/buildConfigs/birt/tools/BIRTDownloadSetup.xml index 862d57ff772..c4052b9d851 100644 --- a/build/org.eclipse.birt.releng.birtbuilder/eclipse/buildConfigs/birt/tools/BIRTDownloadSetup.xml +++ b/build/org.eclipse.birt.releng.birtbuilder/eclipse/buildConfigs/birt/tools/BIRTDownloadSetup.xml @@ -172,7 +172,6 @@ - diff --git a/build/org.eclipse.birt.releng.birtbuilder/epp/eclipse_reporting_340.xml b/build/org.eclipse.birt.releng.birtbuilder/epp/eclipse_reporting_340.xml index a0e0eee0fec..df4ab27c5f1 100644 --- a/build/org.eclipse.birt.releng.birtbuilder/epp/eclipse_reporting_340.xml +++ b/build/org.eclipse.birt.releng.birtbuilder/epp/eclipse_reporting_340.xml @@ -330,10 +330,6 @@ id="org.apache.commons.codec" version="latest"> - - diff --git a/build/org.eclipse.birt.releng.birtbuilder/extras/prepareSrc.xml b/build/org.eclipse.birt.releng.birtbuilder/extras/prepareSrc.xml index 112ebd02d78..5a9033e593d 100644 --- a/build/org.eclipse.birt.releng.birtbuilder/extras/prepareSrc.xml +++ b/build/org.eclipse.birt.releng.birtbuilder/extras/prepareSrc.xml @@ -14,8 +14,6 @@ --> - diff --git a/build/org.eclipse.birt.releng.birtbuilder/prepare.sh b/build/org.eclipse.birt.releng.birtbuilder/prepare.sh deleted file mode 100755 index 30ca8c2b99c..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/prepare.sh +++ /dev/null @@ -1,38 +0,0 @@ -workspace=releng.450 -pde_build_version=3.7.0.v20110512-1320 - -rm -rf $workspace/src/plugins/* -rm -rf $workspace/src/updateJars -rm -rf $workspace/src/features/* -rm -rf $workspace/src/maps/* -rm -rf $workspace/src/source -rm -rf $workspace/src/*tmpsite* $workspace/src/*.properties $workspace/src/*.xml $workspace/src/nestedJars -rm -rf $workspace/src/buildRepo rm -rf $workspace/src/rootfiles -rm -f $workspace/src/*.zip -rm -f $workspace/src/*.log -rm -f $workspace/src/*.txt -rm -f $workspace/src/*.jar -rm -f $workspace/org.eclipse.birt.releng.birtbuilder/monitor.properties -rm -f $workspace/org.eclipse.birt.releng.birtbuilder/monitor.log -rm -f downloads/4_5_0/*.zip -rm -f downloads/4_5_0/*.txt -rm -f downloads/4_5_0/*.gz - -rm -rf $workspace/src/scmCache -rm -rf $workspace/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_$pde_build_version/scripts/productBuild/scmCache/* -rm -rf $workspace/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_$pde_build_version/scripts/scmCache/* -rm -rf $workspace/org.eclipse.birt.releng.birtbuilder/eclipse/buildConfigs/birt.rcp/scmCache/* - -#CLEAN TEMP FOLDER FOR UNIT TEST -rm -rf /tmp/DataEngine_* -rm -rf /tmp/outputtestData* -rm -f /tmp/BasicDiskList* -rm -f /tmp/*.png -rm -f /tmp/*.jpg -rm -f /tmp/design* -rm -rf /tmp/BIRTSampleDB_* -rm -rf /tmp/org.eclipse.birt.report.model* -rm -rf /tmp/DTETest* - -#ant -f prepare.xml -logfile prepareBuilder.log - diff --git a/build/org.eclipse.birt.releng.birtbuilder/prepare.xml b/build/org.eclipse.birt.releng.birtbuilder/prepare.xml deleted file mode 100644 index 4534a2f5185..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/prepare.xml +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/org.eclipse.birt.releng.birtbuilder/replaceBuildInfo.sh b/build/org.eclipse.birt.releng.birtbuilder/replaceBuildInfo.sh deleted file mode 100755 index bedf4f8a0dc..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/replaceBuildInfo.sh +++ /dev/null @@ -1,12 +0,0 @@ -# Input Arguments: -# -# - -workspace=/home/adb/releng.450 - -rm -f $workspace/PackageFiles/template/build_info_template_new.txt - -sed "s/#build_time#/$1 $2/g" $workspace/PackageFiles/template/build_info_template.txt > build_info_template_new.txt - -sed "s/#univBDate#/$3 $4 $5 $6 $7 $8 $9/g" build_info_template_new.txt > $workspace/PackageFiles/template/build_info_template_new.txt -rm -f build_info_template_new.txt diff --git a/build/org.eclipse.birt.releng.birtbuilder/updatedtp.sh b/build/org.eclipse.birt.releng.birtbuilder/updatedtp.sh deleted file mode 100755 index f69021f8fd8..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/updatedtp.sh +++ /dev/null @@ -1,80 +0,0 @@ -# User specific environment and startup programs -umask 002 - -BASE_PATH=.:/bin:/usr/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/X11R6/bin -LD_LIBRARY_PATH=. -BASH_ENV=$HOME/.bashrc -USERNAME=`whoami` -xhost +$HOSTNAME -DISPLAY=:1.0 -export DISPLAY - -CVS_RSH=ssh -ulimit -c unlimited -export CVS_RSH USERNAME BASH_ENV LD_LIBRARY_PATH DISPLAY - -if [ "x"$ANT_HOME = "x" ]; then export ANT_HOME=/usr/local/apache-ant-1.6.5; fi -if [ "x"$JAVA_HOME = "x" ]; then export JAVA_HOME=/usr/local/j2sdk1.4.2_13; fi -export PATH=${PATH}:${ANT_HOME}/bin:/usr/local/bin - -proc=$$ - -# directory in which to export builder projects -workspace=/home/adb/releng.450 - -builderDir=$workspace/org.eclipse.birt.releng.birtbuilder/ - -# value used in buildLabel and for text replacement in index.php template file -builddate=`date +%Y%m%d` -buildtime=`date +%H%M` - -buildinfoDate=`date +%F%t%H:%M:%S` -buildinfounivDate=`date +%c%z` - -timestamp=$builddate$buildtime - -# After the above the build type is left in $1. -buildType=$1 - -# Set default buildId and buildLabel if none explicitly set -if [ "$buildId" = "" ] -then - #buildId=$buildType$builddate-$buildtime - buildId=v$builddate-$buildtime -fi - -if [ "$buildLabel" = "" ] -then - buildLabel=$buildId -fi - -#Set the tag to HEAD for Nightly builds -if [ "$buildType" = "N" ] -then - tag="-DfetchTag=HEAD" - versionQualifier="-DforceContextQualifier=$buildId" -fi - -# tag for eclipseInternalBuildTools on ottcvs1 -internalToolsTag=$buildProjectTags - -# tag for exporting org.eclipse.releng.basebuilder -baseBuilderTag=$buildProjectTags - -# tag for exporting the custom builder -customBuilderTag=$buildProjectTags - -cd $builderDir - -#default value of the bootclasspath attribute used in ant javac calls. -bootclasspath="/usr/local/j2sdk1.4.2_13/jre/lib/rt.jar:/usr/local/j2sdk1.4.2_13/jre/lib/jsse.jar" -bootclasspath_15="/usr/local/jdk1.5.0_02/jre/lib/rt.jar" -jvm15_home="/usr/local/jdk1.5.0_02" - -cd $workspace/org.eclipse.birt.releng.birtbuilder - -#the base command used to run AntRunner headless -antRunner="/usr/local/jdk1.5.0_02/bin/java -Xmx500m -jar ../org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.jar -Dosgi.os=linux -Dosgi.ws=gtk -Dosgi.arch=ppc -application org.eclipse.ant.core.antRunner" - -ant -buildfile eclipse/helper.xml getDTPDownloads.fromlocal -propertyfile build.properties -propertyfile config.properties > updatedtp.log - diff --git a/build/org.eclipse.birt.releng.birtbuilder/verifyCompile.sh b/build/org.eclipse.birt.releng.birtbuilder/verifyCompile.sh deleted file mode 100755 index 5d131f36901..00000000000 --- a/build/org.eclipse.birt.releng.birtbuilder/verifyCompile.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash - -###################### -#rename compile log -###################### - -find $1 -name "*.html" > $1/compile.log - -awk -F "/" '{print "cp " $0 " "$1 FS $2 FS $3 FS $4 FS $5 FS $6 FS $7 FS $8 FS $9 FS $10 FS"_compilelog.html" }' $1/compile.log > $1/plugins.rename -chmod +x $1/plugins.rename -$1/plugins.rename - - - -echo $1 -find $1 -name "*.html" -exec grep "ERROR in" -c {} \; -print > $1/error.plugins - -awk ' /\/org/ {print $1}' $1/error.plugins > $1/error.plugins.tmp -mv $1/error.plugins.tmp $1/error.plugins - -###################################### -#Get compile error plugins total count -###################################### - -wc -l $1/error.plugins > $1/error.plugins.count -count=`awk '{print $1}' $1/error.plugins.count` - -############################################# -#found compile error, generate notify list -############################################# - -if [ $count -gt 0 ] ; then - echo "Compile has error in $1" - awk -F "/" '{print "cp " $0 " "$1 FS $2 FS $3 FS $4 FS $5 FS $6 FS $7 FS $8 FS $9 FS $10 "_compilelog.html" }' $1/error.plugins > $1/error.plugins.rename - chmod +x $1/error.plugins.rename - $1/error.plugins.rename - - #set error plugins or notification - awk -F "/" '{print $10}' $1/error.plugins > $1/notify.list - awk -F "_" '{print " "$1"\\n\\"}' $1/notify.list > $1/notify.list.tmp - mv $1/notify.list.tmp $1/notify.list - - echo "compileHasError=true" >> /home/adb/releng.230/BIRTBuilder/monitor.properties - echo "error.plugin.list=\\" >> /home/adb/releng.230/BIRTBuilder/monitor.properties - cat $1/notify.list >> /home/adb/releng.230/BIRTBuilder/monitor.properties - echo " " >> /home/adb/releng.230/BIRTBuilder/monitor.properties -else - echo "No compile error in $1" - echo "compileHasError=false" >> /home/adb/releng.230/BIRTBuilder/monitor.properties -fi diff --git a/build/org.eclipse.birt.releng.util/.classpath b/build/org.eclipse.birt.releng.util/.classpath deleted file mode 100644 index 233be1d2c49..00000000000 --- a/build/org.eclipse.birt.releng.util/.classpath +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/build/org.eclipse.birt.releng.util/.project b/build/org.eclipse.birt.releng.util/.project deleted file mode 100644 index fa609c8e822..00000000000 --- a/build/org.eclipse.birt.releng.util/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - org.eclipse.birt.releng.util - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - - diff --git a/build/org.eclipse.birt.releng.util/.settings/org.eclipse.core.runtime.prefs b/build/org.eclipse.birt.releng.util/.settings/org.eclipse.core.runtime.prefs deleted file mode 100644 index 5a0ad22d2a7..00000000000 --- a/build/org.eclipse.birt.releng.util/.settings/org.eclipse.core.runtime.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -line.separator=\n diff --git a/build/org.eclipse.birt.releng.util/.settings/org.eclipse.jdt.core.prefs b/build/org.eclipse.birt.releng.util/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index 414eeb7113e..00000000000 --- a/build/org.eclipse.birt.releng.util/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,402 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.builder.cleanOutputFolder=clean -org.eclipse.jdt.core.builder.duplicateResourceTask=warning -org.eclipse.jdt.core.builder.invalidClasspath=abort -org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=*.launch -org.eclipse.jdt.core.circularClasspath=error -org.eclipse.jdt.core.classpath.exclusionPatterns=enabled -org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate -org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=11 -org.eclipse.jdt.core.compiler.debug.lineNumber=generate -org.eclipse.jdt.core.compiler.debug.localVariable=generate -org.eclipse.jdt.core.compiler.debug.sourceFile=generate -org.eclipse.jdt.core.compiler.doc.comment.support=enabled -org.eclipse.jdt.core.compiler.maxProblemPerUnit=100 -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.deprecation=warning -org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled -org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled -org.eclipse.jdt.core.compiler.problem.discouragedReference=warning -org.eclipse.jdt.core.compiler.problem.emptyStatement=warning -org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.problem.fieldHiding=warning -org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning -org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning -org.eclipse.jdt.core.compiler.problem.forbiddenReference=error -org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning -org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning -org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=error -org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning -org.eclipse.jdt.core.compiler.problem.invalidJavadoc=warning -org.eclipse.jdt.core.compiler.problem.invalidJavadocTags=enabled -org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=enabled -org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled -org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=protected -org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore -org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning -org.eclipse.jdt.core.compiler.problem.missingJavadocComments=warning -org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled -org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public -org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning -org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled -org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=public -org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning -org.eclipse.jdt.core.compiler.problem.noEffectAssignment=error -org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning -org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore -org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning -org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning -org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning -org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled -org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning -org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore -org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore -org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning -org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning -org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore -org.eclipse.jdt.core.compiler.problem.unsafeTypeOperation=warning -org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning -org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=enabled -org.eclipse.jdt.core.compiler.problem.unusedImport=warning -org.eclipse.jdt.core.compiler.problem.unusedLocal=warning -org.eclipse.jdt.core.compiler.problem.unusedParameter=warning -org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled -org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled -org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning -org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning -org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=11 -org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines=2147483647 -org.eclipse.jdt.core.formatter.align_type_members_on_columns=false -org.eclipse.jdt.core.formatter.alignment_for_additive_operator=16 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16 -org.eclipse.jdt.core.formatter.alignment_for_assignment=0 -org.eclipse.jdt.core.formatter.alignment_for_bitwise_operator=16 -org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 -org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80 -org.eclipse.jdt.core.formatter.alignment_for_enum_constants=16 -org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16 -org.eclipse.jdt.core.formatter.alignment_for_expressions_in_for_loop_header=0 -org.eclipse.jdt.core.formatter.alignment_for_logical_operator=16 -org.eclipse.jdt.core.formatter.alignment_for_method_declaration=0 -org.eclipse.jdt.core.formatter.alignment_for_module_statements=16 -org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 -org.eclipse.jdt.core.formatter.alignment_for_multiplicative_operator=16 -org.eclipse.jdt.core.formatter.alignment_for_parameterized_type_references=0 -org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80 -org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16 -org.eclipse.jdt.core.formatter.alignment_for_string_concatenation=16 -org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_type_arguments=0 -org.eclipse.jdt.core.formatter.alignment_for_type_parameters=0 -org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16 -org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 -org.eclipse.jdt.core.formatter.blank_lines_after_package=1 -org.eclipse.jdt.core.formatter.blank_lines_before_field=0 -org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 -org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 -org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 -org.eclipse.jdt.core.formatter.blank_lines_before_method=1 -org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 -org.eclipse.jdt.core.formatter.blank_lines_before_package=0 -org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 -org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 -org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_lambda_body=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line -org.eclipse.jdt.core.formatter.comment.align_tags_descriptions_grouped=true -org.eclipse.jdt.core.formatter.comment.align_tags_names_descriptions=false -org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false -org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false -org.eclipse.jdt.core.formatter.comment.count_line_length_from_starting_position=true -org.eclipse.jdt.core.formatter.comment.format_block_comments=true -org.eclipse.jdt.core.formatter.comment.format_header=false -org.eclipse.jdt.core.formatter.comment.format_html=true -org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true -org.eclipse.jdt.core.formatter.comment.format_line_comments=true -org.eclipse.jdt.core.formatter.comment.format_source_code=true -org.eclipse.jdt.core.formatter.comment.indent_parameter_description=false -org.eclipse.jdt.core.formatter.comment.indent_root_tags=false -org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert -org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert -org.eclipse.jdt.core.formatter.comment.line_length=80 -org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true -org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true -org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false -org.eclipse.jdt.core.formatter.compact_else_if=true -org.eclipse.jdt.core.formatter.continuation_indentation=2 -org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 -org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off -org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on -org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false -org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=false -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true -org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true -org.eclipse.jdt.core.formatter.indent_empty_lines=false -org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true -org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true -org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true -org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false -org.eclipse.jdt.core.formatter.indentation.size=4 -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_enum_constant=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_after_additive_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert -org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_bitwise_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert -org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow=insert -org.eclipse.jdt.core.formatter.insert_space_after_logical_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_multiplicative_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_relational_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert -org.eclipse.jdt.core.formatter.insert_space_after_shift_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation=insert -org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_additive_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert -org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_bitwise_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow=insert -org.eclipse.jdt.core.formatter.insert_space_before_logical_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_multiplicative_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert -org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert -org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert -org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_relational_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_shift_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_string_concatenation=insert -org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.join_lines_in_comments=true -org.eclipse.jdt.core.formatter.join_wrapped_lines=true -org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false -org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false -org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false -org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false -org.eclipse.jdt.core.formatter.lineSplit=120 -org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false -org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false -org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 -org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 -org.eclipse.jdt.core.formatter.parentheses_positions_in_annotation=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_catch_clause=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_enum_constant_declaration=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statment=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_if_while_statement=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_lambda_declaration=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_method_delcaration=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_method_invocation=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_switch_statement=common_lines -org.eclipse.jdt.core.formatter.parentheses_positions_in_try_clause=common_lines -org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true -org.eclipse.jdt.core.formatter.tabulation.char=tab -org.eclipse.jdt.core.formatter.tabulation.size=4 -org.eclipse.jdt.core.formatter.use_on_off_tags=false -org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false -org.eclipse.jdt.core.formatter.wrap_before_additive_operator=true -org.eclipse.jdt.core.formatter.wrap_before_assignment_operator=false -org.eclipse.jdt.core.formatter.wrap_before_bitwise_operator=true -org.eclipse.jdt.core.formatter.wrap_before_conditional_operator=true -org.eclipse.jdt.core.formatter.wrap_before_logical_operator=true -org.eclipse.jdt.core.formatter.wrap_before_multiplicative_operator=true -org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true -org.eclipse.jdt.core.formatter.wrap_before_string_concatenation=true -org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true -org.eclipse.jdt.core.incompatibleJDKLevel=ignore -org.eclipse.jdt.core.incompleteClasspath=warning -org.eclipse.jdt.core.javaFormatter=org.eclipse.jdt.core.defaultJavaFormatter diff --git a/build/org.eclipse.birt.releng.util/.settings/org.eclipse.jdt.ui.prefs b/build/org.eclipse.birt.releng.util/.settings/org.eclipse.jdt.ui.prefs deleted file mode 100644 index 4e55c71a424..00000000000 --- a/build/org.eclipse.birt.releng.util/.settings/org.eclipse.jdt.ui.prefs +++ /dev/null @@ -1,65 +0,0 @@ -eclipse.preferences.version=1 -editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true -formatter_profile=org.eclipse.jdt.ui.default.eclipse_profile -formatter_settings_version=14 -internal.default.compliance=user -org.eclipse.jdt.ui.javadoc=true -org.eclipse.jdt.ui.text.custom_code_templates=