Mercurial > public > gradleplugins
annotate build.gradle @ 33:3fd8e36d8f5e
Bumped up snapshot version to 0.4.7
author | Kyle Miller <kyle.miller@mcoecn.org> |
---|---|
date | Fri, 05 Aug 2022 19:25:02 +0100 |
parents | bf31e9ad44cf |
children | 927f02ccc596 |
rev | line source |
---|---|
0 | 1 |
30
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
2 /* |
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
3 * Copyright (c) 2020. Ohio Department of Education. - All Rights Reserved. |
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
4 * Unauthorized copying of this file, in any medium, is strictly prohibited. |
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
5 * Written by the State Software Development Team (http://ssdt.oecn.k12.oh.us/) |
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
6 * |
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
7 */ |
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
8 |
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
9 def ssdtInit = 'init50' |
16
8400a7db1330
USASR-1307: update templates to groovydoc 2.3.6
smith@nwoca.org
parents:
2
diff
changeset
|
10 apply from: "${gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit'}/${ssdtInit}.gradle" |
0 | 11 |
12 description = "SSDT Gradle Plugins" | |
13 | |
14 group="org.ssdt_ohio" | |
15 | |
16 apply plugin: 'groovy' | |
17 apply plugin: 'idea' | |
18 apply plugin: 'maven' | |
19 | |
20 defaultTasks 'clean', 'build' | |
21 | |
30
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
22 sourceCompatibility = 1.8 |
0 | 23 |
24 dependencies { | |
16
8400a7db1330
USASR-1307: update templates to groovydoc 2.3.6
smith@nwoca.org
parents:
2
diff
changeset
|
25 compile localGroovy() |
0 | 26 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
|
27 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
|
28 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
|
29 |
0 | 30 testCompile 'junit:junit:4.10' |
31 } | |
32 | |
33 idea.project { | |
30
bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
Greg Shepherd <shepherd@ssdt-ohio.org>
parents:
29
diff
changeset
|
34 jdkName = '1.8' |
0 | 35 } |
36 | |
37 idea.module { | |
38 downloadSources = true | |
39 downloadJavadoc = true | |
40 } |