Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
Move final build file to the beginning and update guides to reflect this
Browse files Browse the repository at this point in the history
  • Loading branch information
gregturn committed Feb 18, 2014
1 parent 8f61f10 commit 492ad7a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions initial/build.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
apply plugin: 'java'
apply plugin: 'eclipse'

// 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 = '1.11'
}
// end::wrapper[]

0 comments on commit 492ad7a

Please sign in to comment.