view build.gradle @ 0:c51874d4a5a7

initial ssdt plugin
author smith@nwoca.org
date Fri, 18 May 2012 04:32:16 +0100
parents
children 4db19f1c5ad0
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()
//                'org.gcontracts:gcontracts-core:1.2.5'
    testCompile 'junit:junit:4.10'
}

sourceSets {
    main {
        groovy { srcDir 'other' }

    }
}

idea.project {
    jdkName = '1.6'
}

idea.module {
    downloadSources = true
    downloadJavadoc = true
}