Created
April 21, 2014 18:42
-
-
Save sithu/11152182 to your computer and use it in GitHub Desktop.
Gradle How-To
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
# sudo add-apt-repository ppa:cwchien/gradle | |
# sudo apt-get update | |
# sudo apt-get install gradle | |
# Runnable class | |
apply plugin: 'java' | |
jar { | |
manifest { | |
attributes 'Main-Class': 'com.foo.bar.MainClass' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment