views:

75

answers:

2

From what I am reading, to run maven on a windows computer I need to download cygwin.

Can I get away with gitbash?

+3  A: 

No, you don't need Cygwin. Just a Windows version of NT or above.

From the Maven website:

On Windows, Windows NT and above or Cygwin is required for the startup scripts.

From here.

nfechner
Really, mrblah didn't read the website clearly or do his own homework?
delfuego
+7  A: 

Maven runs just fine on windows, it is just a batch file that invokes Java. If you have a JRE/JDK on your machine (with JAVA_HOME correctly configured), you'll be fine.

Kevin