Mercurial > public > gradleplugins
annotate build.gradle @ 19:c3527be50f56
USASR-1921: Update gradle wrapper version
author | Christopher Springer <springer@nwoca.org> |
---|---|
date | Thu, 07 Jan 2016 17:22:03 +0000 |
parents | 8400a7db1330 |
children | e2d02e8742be |
rev | line source |
---|---|
0 | 1 |
16
8400a7db1330
USASR-1307: update templates to groovydoc 2.3.6
smith@nwoca.org
parents:
2
diff
changeset
|
2 def ssdtInit = GradleVersion.current() < GradleVersion.version('2.0') ? 'init' : 'init20' |
8400a7db1330
USASR-1307: update templates to groovydoc 2.3.6
smith@nwoca.org
parents:
2
diff
changeset
|
3 apply from: "${gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit'}/${ssdtInit}.gradle" |
0 | 4 |
5 description = "SSDT Gradle Plugins" | |
6 | |
7 group="org.ssdt_ohio" | |
8 | |
9 apply plugin: 'groovy' | |
10 apply plugin: 'idea' | |
11 apply plugin: 'maven' | |
12 | |
13 defaultTasks 'clean', 'build' | |
14 | |
15 sourceCompatibility = 1.6 | |
16 | |
17 dependencies { | |
16
8400a7db1330
USASR-1307: update templates to groovydoc 2.3.6
smith@nwoca.org
parents:
2
diff
changeset
|
18 compile localGroovy() |
0 | 19 compile gradleApi() |
20 testCompile 'junit:junit:4.10' | |
21 } | |
22 | |
23 idea.project { | |
24 jdkName = '1.6' | |
25 } | |
26 | |
27 idea.module { | |
28 downloadSources = true | |
29 downloadJavadoc = true | |
30 } |