Mercurial > public > gradleplugins
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build.gradle Fri May 18 04:32:16 2012 +0100 @@ -0,0 +1,37 @@ + +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 +}