File tree Expand file tree Collapse file tree 1 file changed +19
-17
lines changed Expand file tree Collapse file tree 1 file changed +19
-17
lines changed Original file line number Diff line number Diff line change 1
1
HOME=$( dirname $0 )
2
2
cd $HOME /../..
3
3
4
- modules=" core web tools"
5
- for module in $modules ; do
6
- echo " ====== INSTALL $module ====="
7
- mvn -pl $module clean install -DskipTests=true
8
- EXIT_VAL=" $? "
9
- if [[ " x$EXIT_VAL " != " x0" ]]; then
10
- exit $EXIT_VAL
11
- fi
12
-
13
- echo " ====== TEST $module ====="
14
- # verify necessary for failsafe, otherwise it won't fail the build!?
15
- mvn -pl $module test failsafe:integration-test verify
16
- EXIT_VAL=" $? "
17
- if [[ " x$EXIT_VAL " != " x0" ]]; then
18
- exit $EXIT_VAL
19
- fi
20
- done
4
+ mvn clean test verify
5
+
6
+ # modules="core web tools"
7
+ # for module in $modules; do
8
+ # echo "====== INSTALL $module ====="
9
+ # mvn -pl $module clean install -DskipTests=true
10
+ # EXIT_VAL="$?"
11
+ # if [[ "x$EXIT_VAL" != "x0" ]]; then
12
+ # exit $EXIT_VAL
13
+ # fi
14
+ #
15
+ # echo "====== TEST $module ====="
16
+ # # verify necessary for failsafe, otherwise it won't fail the build!?
17
+ # mvn -pl $module test failsafe:integration-test verify
18
+ # EXIT_VAL="$?"
19
+ # if [[ "x$EXIT_VAL" != "x0" ]]; then
20
+ # exit $EXIT_VAL
21
+ # fi
22
+ # done
You can’t perform that action at this time.
0 commit comments