19 lines
569 B
Bash
Executable File
19 lines
569 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=$(grep '<version>' pom.xml | head -1 | egrep -o '[0-9.]+')
|
|
|
|
mvn -DskipTests=true install
|
|
|
|
if [ !-f "$HOME/.m2/repository/org/jeudego/pairgoth/pairgoth-common/$VERSION/pairgoth-common-$VERSION.jar" ]
|
|
then
|
|
mvn -DskipTests=true install # needed for pairgoth-common
|
|
fi
|
|
|
|
trap 'kill $CSSWATCH; exit' INT
|
|
( cd view-webapp; ./csswatch.sh ) &
|
|
CSSWATCH=$!
|
|
|
|
export MAVEN_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:5006"
|
|
mvn -DskipTests=true --projects view-webapp package jetty:run -Dpairgoth.mode=client
|
|
kill $CSSWATCH
|