annotate build.gradle @ 29:e531fc141b17

update gradle version
author smith@nwoca.org
date Tue, 04 Dec 2018 19:48:59 +0000
parents e2d02e8742be
children bf31e9ad44cf
rev   line source
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
1
29
e531fc141b17 update gradle version
smith@nwoca.org
parents: 23
diff changeset
2 def ssdtInit = 'init40'
16
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
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
4
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
5 description = "SSDT Gradle Plugins"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
6
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
7 group="org.ssdt_ohio"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
8
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
9 apply plugin: 'groovy'
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
10 apply plugin: 'idea'
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
11 apply plugin: 'maven'
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
12
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
13 defaultTasks 'clean', 'build'
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
14
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
15 sourceCompatibility = 1.6
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
16
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
17 dependencies {
16
8400a7db1330 USASR-1307: update templates to groovydoc 2.3.6
smith@nwoca.org
parents: 2
diff changeset
18 compile localGroovy()
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
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
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
23 testCompile 'junit:junit:4.10'
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
24 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
25
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
26 idea.project {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
27 jdkName = '1.6'
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
28 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
29
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
30 idea.module {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
31 downloadSources = true
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
32 downloadJavadoc = true
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
33 }