I have a little problem
I created a batch i named mvncp.bat, helping me to launch a sequence of maven commands
The batch is liek this
Code: Select all
mvn clean
mvn package
Problem is, the batch stops after the first line and prompts me. Im expecting it to execute the second instruction automatically but that is not what it does.
Code: Select all
[b]C:\workspaces\Bra_Cat_SplashTool_Core>mvncp.bat[/b]
[b]C:\workspaces\Bra_Cat_SplashTool_Core>mvn clean[/b]
[INFO] Scanning for projects...
[INFO] snapshot com.buongiorno.gpp.wwf.portlets:cat-dependencies:1.0.0-ALPHA-SNAPSHOT: checking for updates from buongio
rno
Downloading: http://artifactory.buongiorno.com/artifactory/repo/com/buongiorno/gpp/wwf/portlets/cat-dependencies/1.0.0-A
LPHA-SNAPSHOT/cat-dependencies-1.0.0-ALPHA-SNAPSHOT.pom
[INFO] snapshot com.buongiorno.wwf:wwf-platform:2.4-ALPHA-SNAPSHOT: checking for updates from buongiorno
Downloading: http://artifactory.buongiorno.com/artifactory/repo/com/buongiorno/wwf/wwf-platform/2.4-ALPHA-SNAPSHOT/wwf-p
latform-2.4-ALPHA-SNAPSHOT.pom
[INFO] snapshot com.buongiorno:group-base:5.0-SNAPSHOT: checking for updates from buongiorno
Downloading: http://artifactory.buongiorno.com/artifactory/repo/com/buongiorno/group-base/5.0-SNAPSHOT/group-base-5.0-SN
APSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] Building com.buongiorno.bra.cat:wwf-splashTool:war:1.0.0.0-ALPHA-SNAPSHOT cvs $Name: $
[INFO] task-segment: [clean]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3 seconds
[INFO] Finished at: Fri May 14 13:17:38 CEST 2010
[INFO] Final Memory: 9M/16M
[INFO] ------------------------------------------------------------------------
[b]C:\workspaces\Bra_Cat_SplashTool_Core>[/b]
Nicolas