This is our final project for Software Engineering in the University of Haifa.
The system is splitted into two parts:
- lilach-client: Built with JavaFX
- lilach-server Built with MySQL
We are using Maven as our build system. So, in order to run the whole project you have three options:
-
Running using IntelliJ IDEA
This can be achieved by using the
Server+Client
configuration. -
Running using two separate commands
Running Server:
mvn clean compile -pl lilach-server exec:exec -am
Running Client:
mvn clean compile -pl lilach-client exec:exec -am
-
Running using one command
Just run:
mvn -T2 clean compile exec:exec