Skip to content

Instantly share code, notes, and snippets.

@chrisking
Created July 3, 2014 19:27
Show Gist options
  • Select an option

  • Save chrisking/084892e217e11671292c to your computer and use it in GitHub Desktop.

Select an option

Save chrisking/084892e217e11671292c to your computer and use it in GitHub Desktop.
maven config
//Checking for HOST OS to determine maven command
def maven_command = "";
if (System.properties['os.name'].toLowerCase().contains('windows')) {
//Is Windows
maven_command = "mvn.bat";
} else {
//Is Not Windows
maven_command = "mvn";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment