Skip to content

Instantly share code, notes, and snippets.

@bitristan
Created March 26, 2015 12:08
Show Gist options
  • Save bitristan/4bdacf18323c8b982e57 to your computer and use it in GitHub Desktop.
Save bitristan/4bdacf18323c8b982e57 to your computer and use it in GitHub Desktop.
build java project with gradle
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
mainClassName = 'hello.HelloWorld'
// tag::repositories[]
repositories {
mavenCentral()
}
// end::repositories[]
// tag::jar[]
jar {
baseName = 'gs-gradle'
version = '0.1.0'
}
// end::jar[]
// tag::dependencies[]
dependencies {
compile "joda-time:joda-time:2.2"
}
// end::dependencies[]
// tag::wrapper[]
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
// end::wrapper[]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment