forked from springside/springside4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quick-start.bat
41 lines (34 loc) · 1.1 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
@echo off
echo [Pre-Requirement] Makesure install JDK 6.0+ and set the JAVA_HOME.
echo [Pre-Requirement] Makesure install Maven 3.0.3+ and set the PATH.
set MVN=mvn
set MAVEN_OPTS=%MAVEN_OPTS% -XX:MaxPermSize=128m
echo [Step 1] Install all springside modules and archetype to local maven repository.
cd modules
call %MVN% clean install
if errorlevel 1 goto error
cd ..\support\maven-archetype
call %MVN% clean install
if errorlevel 1 goto error
cd ..\..
echo [Step 2] Initialize schema and data for all example projects.
cd examples
call %MVN% antrun:run -Prefresh-db
if errorlevel 1 goto error
cd ..\
echo [Step 3] Start all example projects.
cd examples\quickstart
start "QuickStart" %MVN% clean jetty:run
if errorlevel 1 goto error
cd ..\showcase
start "Showcase" %MVN% clean jetty:run -Djetty.port=8081
if errorlevel 1 goto error
cd ..\..\
echo [INFO] Please wait a moment. When you see "[INFO] Started Jetty Server" in both 2 popup consoles, you can access below demo sites:
echo [INFO] http://localhost:8080/quickstart
echo [INFO] http://localhost:8081/showcase
goto end
:error
echo Error Happen!!
:end
pause