forked from scala-ide/scala-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-all.sh
executable file
·49 lines (38 loc) · 984 Bytes
/
build-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash -e
# run in sequences the different maven calls needed to fully build Scala IDE from scratch
#ROOT_DIR=$(dirname $(readlink -f $0))
# not as good as the readlink version, but it is not working on os X
ROOT_DIR=$(dirname $0)
cd ${ROOT_DIR}
ROOT_DIR=${PWD}
if [ -z "$*" ]
then
ARGS="-Pscala-2.10.x -Peclipse-juno clean install"
else
ARGS="$*"
fi
echo "Running with: mvn ${ARGS}"
# the parent project
echo "Building parent project in $ROOT_DIR"
cd ${ROOT_DIR}
mvn ${ARGS}
echo "Building the toolchain"
# the toolchain
cd ${ROOT_DIR}/org.scala-ide.build-toolchain
mvn ${ARGS}
# set the versions if required
cd ${ROOT_DIR}
if [ -n "${SET_VERSIONS}" ]
then
echo "setting versions"
mvn ${ARGS} -Pset-versions exec:java
else
echo "Not running UpdateScalaIDEManifests."
fi
# set features.xml
echo "Setting features.xml"
(mvn ${ARGS} -Pset-features antrun:run) || exit -1
# the plugins
echo "Building plugins"
cd ${ROOT_DIR}/org.scala-ide.sdt.build
mvn ${ARGS}