forked from scala-ide/scala-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-all.sh
executable file
·55 lines (43 loc) · 1.29 KB
/
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
49
50
51
52
53
54
#!/bin/bash -e
# run in sequences the different maven calls needed to fully build Scala IDE from scratch
# 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
MVN_ARGS="-Pscala-2.11.x -Peclipse-neon $ADDITIONAL_MVN_OPTS clean install"
MVN_P2_ARGS="-Dtycho.localArtifacts=ignore -Pscala-2.11.x -Peclipse-neon $ADDITIONAL_MVN_OPTS clean verify"
else
MVN_ARGS="$*"
MVN_P2_ARGS="-Dtycho.localArtifacts=ignore $*"
fi
echo "Running with: mvn ${MVN_P2_ARGS}"
# the parent project
echo "Building parent project in $ROOT_DIR"
cd ${ROOT_DIR}
mvn ${MVN_ARGS}
# set custom configuration files
echo "Setting custom configuration files"
mvn ${MVN_ARGS} -Pset-version-specific-files antrun:run
echo "Building the toolchain"
# the toolchain
cd ${ROOT_DIR}/org.scala-ide.build-toolchain
mvn ${MVN_ARGS}
echo "Generating the local p2 repositories"
# the locol p2 repos
cd ${ROOT_DIR}/org.scala-ide.p2-toolchain
mvn ${MVN_P2_ARGS}
# set the versions if required
cd ${ROOT_DIR}
if [ -n "${SET_VERSIONS}" ]
then
echo "setting versions"
mvn ${MVN_P2_ARGS} -Pset-versions exec:java
else
echo "Not running UpdateScalaIDEManifests."
fi
# the plugins
echo "Building plugins"
cd ${ROOT_DIR}/org.scala-ide.sdt.build
mvn ${MVN_P2_ARGS}