Mercurial > public > gradleplugins
comparison build.gradle @ 0:c51874d4a5a7
initial ssdt plugin
author | smith@nwoca.org |
---|---|
date | Fri, 18 May 2012 04:32:16 +0100 |
parents | |
children | 4db19f1c5ad0 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c51874d4a5a7 |
---|---|
1 | |
2 apply from: "${gradle.hasProperty('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation :'http://hg.ssdt-ohio.org/browse/public/develkit'}/init.gradle" | |
3 | |
4 description = "SSDT Gradle Plugins" | |
5 | |
6 group="org.ssdt_ohio" | |
7 | |
8 apply plugin: 'groovy' | |
9 apply plugin: 'idea' | |
10 apply plugin: 'maven' | |
11 | |
12 defaultTasks 'clean', 'build' | |
13 | |
14 sourceCompatibility = 1.6 | |
15 | |
16 dependencies { | |
17 groovy localGroovy() | |
18 compile gradleApi() | |
19 // 'org.gcontracts:gcontracts-core:1.2.5' | |
20 testCompile 'junit:junit:4.10' | |
21 } | |
22 | |
23 sourceSets { | |
24 main { | |
25 groovy { srcDir 'other' } | |
26 | |
27 } | |
28 } | |
29 | |
30 idea.project { | |
31 jdkName = '1.6' | |
32 } | |
33 | |
34 idea.module { | |
35 downloadSources = true | |
36 downloadJavadoc = true | |
37 } |