Mercurial > public > gradleplugins
annotate build.gradle @ 26:428c92e0ae10 version-0.4.3
USASR-2436: Set branch release version
author | Christopher Springer <springer@nwoca.org> |
---|---|
date | Wed, 21 Dec 2016 13:14:08 +0000 |
parents | e2d02e8742be |
children | e531fc141b17 |
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() |
23
e2d02e8742be
usasr-1307: for render tables for properties and reportable properties with label and group names
smith@nwoca.org
parents:
16
diff
changeset
|
20 compile "org.asciidoctor:asciidoctorj:1.5.4" |
e2d02e8742be
usasr-1307: for render tables for properties and reportable properties with label and group names
smith@nwoca.org
parents:
16
diff
changeset
|
21 compile 'org.apache.commons:commons-lang3:3.4' |
e2d02e8742be
usasr-1307: for render tables for properties and reportable properties with label and group names
smith@nwoca.org
parents:
16
diff
changeset
|
22 |
0 | 23 testCompile 'junit:junit:4.10' |
24 } | |
25 | |
26 idea.project { | |
27 jdkName = '1.6' | |
28 } | |
29 | |
30 idea.module { | |
31 downloadSources = true | |
32 downloadJavadoc = true | |
33 } |