Changed 'mvn.bat' to 'mvn.cmd' such that the eclipse plugins can build on

Windows with the current version of maven.

Change-Id: I10305a01392d9fe3002c451aa0b835a407fa2c81
This commit is contained in:
Joseph
2015-06-26 09:51:29 -04:00
parent 2c392d1813
commit 8794f7d636

View File

@@ -43,7 +43,7 @@ task eclipsePlugins(type: Exec) {
group = 'WPILib'
workingDir 'eclipse-plugins'
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
executable 'mvn.bat'
executable 'mvn.cmd'
} else {
executable 'mvn'
}
@@ -57,7 +57,7 @@ task cleanEclipsePlugins(type: Exec) {
group = 'WPILib'
workingDir 'eclipse-plugins'
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
executable 'mvn.bat'
executable 'mvn.cmd'
} else {
executable 'mvn'
}