Skip to content

Instantly share code, notes, and snippets.

@ataylor284
Created June 13, 2014 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ataylor284/7232a26b20cf39eb582f to your computer and use it in GitHub Desktop.
Save ataylor284/7232a26b20cf39eb582f to your computer and use it in GitHub Desktop.
Simple gradle build file for Java application with jar dependencies.
apply plugin: 'java'
apply plugin: 'application'
mainClassName = "package.MainClass"
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment