Created
December 15, 2013 04:35
-
-
Save lifuzu/7968937 to your computer and use it in GitHub Desktop.
Trying to set the destinationDir property of a Jar task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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