kordamp / gm

Gum is a Gradle/Maven/JBang wrapper written in Go
Apache License 2.0
59 stars 2 forks source link

Cannot detect Maven when version 3.6.3 is installed #44

Closed pmwqld closed 3 years ago

pmwqld commented 3 years ago

gm only checks to see if the file "mvn.bat" is on the path. In Maven 3.6.3, only mvn.cmd is provided as a windows executable. Workaround was to create a mvn.bat file as follows. call mvn.cmd %*

It would be nice if it detected it correctly.