eb.iliass
eb.iliass

Reputation: 79

windows script for building multimodule maven project

I'm trying to create a .bat file for automatic building of a multimodule maven project, the script is :

mvn clean install
cd ./webapp
mvn jetty:run-war

However, the first line seem to close the console window, so I never get to the last line. Thank you in advance.

Upvotes: 1

Views: 515

Answers (1)

lweller
lweller

Reputation: 11327

call mvn clean install
cd ./webapp
call mvn jetty:run-war

Upvotes: 2

Related Questions