Reputation: 752
I recently had to get a new computer at work, and reinstall all programming stuff including Maven. Now I'm trying to release a project change, but I can't get Maven Release to work.
-
Still not working. Ideas?
Upvotes: 3
Views: 6520
Reputation: 385
@Progamactor is correct. You need to
Add the following contents to that batch (mvn.bat):
@mvn.cmd %*
Upvotes: 1
Reputation: 41
You need to rename the mvn.cmd file into mvn.bat folder. In mvn 3.3.x the structure of maven have changed. The mvn.bat file have been changed into mvn.cmd. But in command line this is not taken into consideration. Hope i have help you with your issue.
Upvotes: 4