Merge "Changed 'mvn.bat' to 'mvn.cmd' such that the eclipse plugins can build on Windows with the current version of maven."

This commit is contained in:
Brad Miller (WPI)
2015-07-07 16:21:04 -07:00
committed by Gerrit Code Review

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'
}