forked from springside/springside4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquick-start.bat
42 lines (34 loc) · 1.29 KB
/
quick-start.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@echo off
echo [Pre-Requirement] Makesure install JDK 6.0+ and set the JAVA_HOME.
echo [Pre-Requirement] Makesure install Maven 3.0.4+ and set the PATH.
set MVN=mvn
set MAVEN_OPTS=%MAVEN_OPTS% -XX:MaxPermSize=128m
echo [Step 1] Install all springside modules to local maven repository.
call %MVN% clean install -Dmaven.test.skip=true
if errorlevel 1 goto error
echo [Step 2] Generate Eclipse project files for all projects
call %MVN% eclipse:clean eclipse:eclipse
if errorlevel 1 goto error
echo [Step 3] Init schema and data for all example projects.
call %MVN% antrun:run -Prefresh-db -pl org.springside.examples:mini-service,org.springside.examples:mini-web,org.springside.examples:showcase
if errorlevel 1 goto error
echo [Step 4] Start all example projects.
cd examples\mini-service
start "Mini-Service" %MVN% clean jetty:run -Djetty.port=8082
if errorlevel 1 goto error
cd ..\mini-web
start "Mini-Web" %MVN% clean jetty:run -Djetty.port=8081
if errorlevel 1 goto error
cd ..\showcase
start "Showcase" %MVN% clean jetty:run
if errorlevel 1 goto error
cd ..\..\
echo [INFO] Please wait a moment then access below demo sites:
echo [INFO] http://localhost:8082/mini-service
echo [INFO] http://localhost:8081/mini-web
echo [INFO] http://localhost:8080/showcase
goto end
:error
echo Error Happen!!!
:end
pause