1 Space Based Computing SS 2013
3 ### How to start the JMS Group GUI
4 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.group.GroupAgent" -Dexec.args="XVSM"
6 ### How to start the JMS Pizzeria GUI
7 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.pizzeria.PizzeriaAgent" -Dexec.args="JMS"
9 ### How to start a JMS Waiter with Id 1
10 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.jms.waiter.Waiter" -Dexec.args="1"
12 ### How to start a JMS Cook with Id 1
13 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.jms.cook.Cook" -Dexec.args="1"
15 ### How to start a Space Server
16 mvn exec:java -Dexec.mainClass="org.mozartspaces.core.Server" -Dexec.args=<PORT>
18 ### How to start the Space Group GUI
19 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.group.GroupAgent" -Dexec.args="XVSM"
20 The Group GUI expects that a Space Server was started on 9876.
22 ### How to start the Space Pizzeria GUI
23 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.pizzeria.PizzeriaAgent" -Dexec.args="XVSM <PORT>"
25 ### How to start a Space Waiter with Id 1
26 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.xvsm.waiter.Waiter" -Dexec.args="1 <Pizzeria-PORT>"
28 ### How to start a Space Cook with Id 1
29 mvn exec:java -Dexec.mainClass="at.ac.tuwien.sbc.valesriegler.xvsm.cook.Cook" -Dexec.args="1 <Pizzeria-PORT>"