Skip to content

Commit

Permalink
- changing names in the run module
Browse files Browse the repository at this point in the history
	- world-ui -> citymap
	- dashboard-ui -> dashboard
	- tasklists-ui-web -> tasklists
  • Loading branch information
salaboy committed Nov 2, 2011
1 parent d75767b commit e18e69a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
6 changes: 4 additions & 2 deletions README
Expand Up @@ -65,8 +65,10 @@ mvn -Pcore

Once core is started you can start world ui and task lists web ui.

From a different terminal you need to run: mvn -Pworld-ui
From a different terminal you need to run: mvn -Ptasklists-ui-web
From a different terminal you need to run: mvn -Pcitymap
From a different terminal you need to run: mvn -Ptasklists
From a different terminal you need to run: mvn -Pdashboard
From a different terminal you need to run: mvn -Psensors
Interacting with the application

Now that we have the main three modules running we can start interacting with the application. Let's create and emergency and let's try to solve it. The following video guides you through the Heart Attack Scenario.
Expand Down
12 changes: 6 additions & 6 deletions run/pom.xml
Expand Up @@ -57,7 +57,7 @@
</dependencies>
</profile>

<!--world-gui -->
<!--city map -->
<profile>
<id>win32</id>
<activation>
Expand Down Expand Up @@ -103,7 +103,7 @@
</properties>
</profile>
<profile>
<id>world-ui</id>
<id>citymap</id>
<properties>
<native.path>${project.build.directory}/natives</native.path>
</properties>
Expand Down Expand Up @@ -174,9 +174,9 @@



<!--dashboard-ui -->
<!--dashboard -->
<profile>
<id>dashboard-ui</id>
<id>dashboard</id>
<build>
<defaultGoal>exec:exec</defaultGoal>
<plugins>
Expand Down Expand Up @@ -239,7 +239,7 @@


<profile>
<id>tasklists-ui-web</id>
<id>tasklists</id>
<build>
<defaultGoal>exec:exec</defaultGoal>
<plugins>
Expand All @@ -257,7 +257,7 @@
</executions>
<configuration>
<executable>mvn</executable>
<commandlineArgs>jetty:run-war -Ptasklists-ui-web -Djava.net.preferIPv4Stack=true -Djgroups.bind_addr=127.0.0.1</commandlineArgs>
<commandlineArgs>jetty:run-war -Ptasklists -Djava.net.preferIPv4Stack=true -Djgroups.bind_addr=127.0.0.1</commandlineArgs>
</configuration>
</plugin>

Expand Down

0 comments on commit e18e69a

Please sign in to comment.