mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-24 23:59:44 +01:00
20 lines
582 B
Bash
20 lines
582 B
Bash
#!/bin/bash
|
|
|
|
# Starts two clients and the server
|
|
|
|
# export JAVA_OPTS="-Duser.language=fr -Duser.region=FR -Djava.util.logging.config.file=logging.properties"
|
|
# export JAVA_OPTS="-Duser.language=en -Duser.region=US -Djava.util.logging.config.file=logging.properties"
|
|
export JAVA_OPTS="-Djava.util.logging.config.file=logging.properties"
|
|
|
|
export CWD=`pwd`/`dirname $0`
|
|
cd $CWD/..
|
|
|
|
./gradlew installDist
|
|
|
|
cd battleship/client
|
|
build/install/battleship/bin/battleship &
|
|
sleep 3
|
|
build/install/battleship/bin/battleship &
|
|
cd ../server
|
|
build/install/battleship-server/bin/battleship-server
|