I want to create a project *free style* using Hudson and i want to execute in it commands that installs jar in the repository of Maven by using : mvn install:install-file
When i put one command it works but when i put more that one command:
mvn install:install-file
mvn install:install-file
Hudson executes the first command only!!
Who has a solution for this please?
I have 120 jar file, it only runs the first one and exits to the command prompt.
So i’ve found a solution : by using the call command for each call to mvn like this:
call mvn install:install-file …
call mvn install:install-file …
By this method you can put many commands Maven in only one project free style in Hudson.