Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>emlab-generation-parent</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
9 changes: 9 additions & 0 deletions shellscripts/TEMPLATE_emlabConfig.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
:#####################################
:## Set EMLab and AgentSpringHome ##
:## or uncomment lines for default ##
:## values. ##
:#####################################
:Windows format
@echo off
set emlabHome=D:\emlab
set agentSpringHome=D:\AgentSpring
16 changes: 16 additions & 0 deletions shellscripts/compileModel.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@echo off

if exist "emlabConfig.bat" (
call emlabConfig.bat
) else (
echo Define emlabConfig.bat, by changing the template.
pause
exit
)


set modelhome=%emlabHome%\emlab-model
cd %modelhome%
call mvn clean install
cd %d13nhome%\shellscripts

18 changes: 18 additions & 0 deletions shellscripts/setupAgentSpring.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
@echo off

if exist "emlabConfig.bat" (
call emlabConfig.bat
) else (
echo Define emlabConfig.bat, by changing the template.
pause
exit
)

cd %agentspringHome%\agentspring-facade
call mvn clean install
cd %agentspringHome%\agentspring-face
call mvn clean install
cd %agentspringHome%\agentspring-engine
call mvn clean install

cd %emlabHome%\shellscripts
13 changes: 13 additions & 0 deletions shellscripts/startAgentSpring.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@echo off

if exist "emlabConfig.bat" (
call emlabConfig.bat
) else (
echo Define emlabConfig.bat, by changing the template.
pause
exit
)

cd %agentspringHome%/agentspring-face/
call mvn jetty:run

13 changes: 13 additions & 0 deletions shellscripts/startModel.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@echo off

if exist "emlabConfig.bat" (
call emlabConfig.bat
) else (
echo Define emlabConfig.bat, by changing the template.
pause
exit
)

cd %emlabHome%\emlab-model
call mvn exec:java
cd %emlabHome%\shellscripts