forked from lazyman/rapid-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…@6199 4ca5cf0f-1a52-0410-96e1-5992aa8baeaf
- Loading branch information
badqiu
committed
Jan 3, 2011
1 parent
fa58165
commit 24627b3
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
echo [INFO] Use maven eclipse-plugin download jars and generate eclipse project files. | ||
echo [Info] Please add "-Declipse.workspace=<path-to-eclipse-workspace>" at end of mvn command. | ||
|
||
cd %~dp0 | ||
cd .. | ||
call mvn eclipse:clean eclipse:eclipse | ||
cd bin | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@echo off | ||
echo [INFO] Use maven jetty-plugin run the project. | ||
|
||
cd %~dp0 | ||
cd .. | ||
|
||
set MAVEN_OPTS=%MAVEN_OPTS% -XX:MaxPermSize=128m | ||
call mvn jetty:run -Djetty.port=8080 | ||
|
||
cd bin | ||
pause |