Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-02-20 21:02:45 +0000
committerThanh Ha2013-02-20 21:02:48 +0000
commit148655768c455f3a2e3e2071f51493d7004c4fff (patch)
treeefb647206c3131164d6c2fab22b5dadf80fbb54c /scripts
parentf90d73481510d18fdab799d43134aa9b8a922289 (diff)
downloadeclipse.platform.releng.aggregator-148655768c455f3a2e3e2071f51493d7004c4fff.tar.gz
eclipse.platform.releng.aggregator-148655768c455f3a2e3e2071f51493d7004c4fff.tar.xz
eclipse.platform.releng.aggregator-148655768c455f3a2e3e2071f51493d7004c4fff.zip
Update build scripts to no longer build maven-cbi-plugin and jarsigner
- maven-cbi-plugin and eclipse-jarsigner-plugin are no longer required as they are now available in repo.eclipse.org repository - Added message to cbi_build.sh that the script is deprecated and will be removed in the future
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build.sh29
-rwxr-xr-xscripts/cbi_build.sh9
2 files changed, 8 insertions, 30 deletions
diff --git a/scripts/build.sh b/scripts/build.sh
index c65f45bf5..ef60afc68 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -1,6 +1,5 @@
#!/bin/bash
-
BASEDIR=$(pwd)
LOG=$BASEDIR/log_$( date +%Y%m%d%H%M%S ).txt
exec >$LOG 2>&1
@@ -80,28 +79,6 @@ installEclipseParent () {
popd
}
-installMavenCbi () {
- pushd eclipse.platform.releng.aggregator
- mvn -f maven-cbi-plugin/pom.xml \
- clean install \
- -Dmaven.repo.local=$LOCAL_REPO
- popd
-}
-
-installEclipseSigner () {
- if [ ! -d org.eclipse.cbi.maven.plugins ]; then
- git clone -n \
- ${GIT_PREFIX}/gitroot/cbi/org.eclipse.cbi.maven.plugins.git
- fi
- pushd org.eclipse.cbi.maven.plugins
- git fetch
- git checkout eclipse-jarsigner-plugin-1.0.1
- mvn -f eclipse-jarsigner-plugin/pom.xml \
- clean install \
- -Dmaven.repo.local=$LOCAL_REPO
- popd
-}
-
buildAggregator () {
pushd eclipse.platform.releng.aggregator
mvn $mavenVerbose \
@@ -119,14 +96,8 @@ if $updateAggregator; then
cloneAggregator
fi
-# if you want to sign on build.eclipse.org. you need this
-if [ ! -z "$mavenSign" ]; then
- installEclipseSigner
-fi
-
# pick up any changes
installEclipseParent
-installMavenCbi
# build from the aggregator root
buildAggregator
diff --git a/scripts/cbi_build.sh b/scripts/cbi_build.sh
index 86a4e2862..fb9ee6cdf 100755
--- a/scripts/cbi_build.sh
+++ b/scripts/cbi_build.sh
@@ -1,5 +1,13 @@
#!/bin/bash
+###
+### THIS SCRIPT IS DEPRECATED, USE build.sh INSTEAD.
+###
+
+echo "WARNING: This script is deprecated and will be removed in the future, please use build.sh instead."
+
+
+
BASE=$( cd $( dirname "$0" ) > /dev/null ; pwd )
if [[ ! -e "$BASE/setup.sh" ]]; then
@@ -24,7 +32,6 @@ cmd="$1"
case "$cmd" in
build ) #CMD Build all the sources
mvnWrapper -f eclipse-parent/pom.xml clean install
- mvnWrapper -f maven-cbi-plugin/pom.xml clean install
mvnWrapper clean install -Dmaven.test.skip=true
echo "Build successful"
echo "You can find the installation files in $BASE/../eclipse.platform.releng.tychoeclipsebuilder/sdk/target/products/"

Back to the top