view build.gradle @ 2:4db19f1c5ad0

create ProjectVersion as instance instead of static. Add build info to jar manifest
author smith@nwoca.org
date Fri, 18 May 2012 18:21:13 +0100
parents c51874d4a5a7
children 8400a7db1330
line wrap: on
line source

apply from: "${gradle.hasProperty('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation :'http://hg.ssdt-ohio.org/browse/public/develkit'}/init.gradle"

description = "SSDT Gradle Plugins"

group="org.ssdt_ohio"

apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'maven'

defaultTasks 'clean', 'build'

sourceCompatibility = 1.6

dependencies {
    groovy      localGroovy()
    compile     gradleApi()
    testCompile 'junit:junit:4.10'
}

idea.project {
    jdkName = '1.6'
}

idea.module {
    downloadSources = true
    downloadJavadoc = true
}