Mercurial > public > gradleplugins
comparison build.gradle @ 30:bf31e9ad44cf
SC-181 Upgrade to gradle 5.0 for version 0.4.5, fix problems with VersionClassPlugin
author | Greg Shepherd <shepherd@ssdt-ohio.org> |
---|---|
date | Tue, 18 Feb 2020 16:36:38 -0500 |
parents | e531fc141b17 |
children | 927f02ccc596 |
comparison
equal
deleted
inserted
replaced
29:e531fc141b17 | 30:bf31e9ad44cf |
---|---|
1 | 1 |
2 def ssdtInit = 'init40' | 2 /* |
3 * Copyright (c) 2020. Ohio Department of Education. - All Rights Reserved. | |
4 * Unauthorized copying of this file, in any medium, is strictly prohibited. | |
5 * Written by the State Software Development Team (http://ssdt.oecn.k12.oh.us/) | |
6 * | |
7 */ | |
8 | |
9 def ssdtInit = 'init50' | |
3 apply from: "${gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit'}/${ssdtInit}.gradle" | 10 apply from: "${gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit'}/${ssdtInit}.gradle" |
4 | 11 |
5 description = "SSDT Gradle Plugins" | 12 description = "SSDT Gradle Plugins" |
6 | 13 |
7 group="org.ssdt_ohio" | 14 group="org.ssdt_ohio" |
10 apply plugin: 'idea' | 17 apply plugin: 'idea' |
11 apply plugin: 'maven' | 18 apply plugin: 'maven' |
12 | 19 |
13 defaultTasks 'clean', 'build' | 20 defaultTasks 'clean', 'build' |
14 | 21 |
15 sourceCompatibility = 1.6 | 22 sourceCompatibility = 1.8 |
16 | 23 |
17 dependencies { | 24 dependencies { |
18 compile localGroovy() | 25 compile localGroovy() |
19 compile gradleApi() | 26 compile gradleApi() |
20 compile "org.asciidoctor:asciidoctorj:1.5.4" | 27 compile "org.asciidoctor:asciidoctorj:1.5.4" |
22 | 29 |
23 testCompile 'junit:junit:4.10' | 30 testCompile 'junit:junit:4.10' |
24 } | 31 } |
25 | 32 |
26 idea.project { | 33 idea.project { |
27 jdkName = '1.6' | 34 jdkName = '1.8' |
28 } | 35 } |
29 | 36 |
30 idea.module { | 37 idea.module { |
31 downloadSources = true | 38 downloadSources = true |
32 downloadJavadoc = true | 39 downloadJavadoc = true |