Split run scripts for different components
This commit is contained in:
parent
a571864b8b
commit
7adce1bc9c
1 changed files with 9 additions and 3 deletions
|
@ -13,10 +13,16 @@
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "run";
|
name = "client";
|
||||||
category = "development";
|
category = "development";
|
||||||
help = "Run application";
|
help = "Run client";
|
||||||
command = "mvn javafx:run";
|
command = "mvn package && java -cp target/dominion-1.0-SNAPSHOT.jar:repo/be/ugent/objprog/commhub/1.0/commhub-1.0.jar be.ugent.dominion.Main client";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "server";
|
||||||
|
category = "development";
|
||||||
|
help = "Run server";
|
||||||
|
command = "mvn package && java -cp target/dominion-1.0-SNAPSHOT.jar:repo/be/ugent/objprog/commhub/1.0/commhub-1.0.jar be.ugent.dominion.Main server";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "clean";
|
name = "clean";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue