Skip to content

Instantly share code, notes, and snippets.

@lifuzu
Created December 15, 2013 04:35
Show Gist options
  • Save lifuzu/7968937 to your computer and use it in GitHub Desktop.
Save lifuzu/7968937 to your computer and use it in GitHub Desktop.
Trying to set the destinationDir property of a Jar task
//Trying to set the destinationDir property of a Jar task with a string
jar {
destinationDir = 'build/jar'
}
//Trying to set the destinationDir property of a Jar task with a string
jar {
destinationDir = new File('build/jar')
}
//Setting the destinationDir property of a Jar task using the file() method
jar {
destinationDir = file('build/jar')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment