comparison build.gradle @ 32:927f02ccc596 version-0.4.6

Update to Gradle 7.4.2
author Kyle Miller <kyle.miller@mcoecn.org>
date Fri, 05 Aug 2022 19:22:06 +0100
parents bf31e9ad44cf
children 30f522dca380
comparison
equal deleted inserted replaced
31:bd084c7d01df 32:927f02ccc596
4 * Unauthorized copying of this file, in any medium, is strictly prohibited. 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/) 5 * Written by the State Software Development Team (http://ssdt.oecn.k12.oh.us/)
6 * 6 *
7 */ 7 */
8 8
9 def ssdtInit = 'init50' 9 def ssdtInit = 'init70'
10 apply from: "${gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit'}/${ssdtInit}.gradle" 10 apply from: resources.text.fromInsecureUri("${gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit'}/${ssdtInit}.gradle")
11 11
12 description = "SSDT Gradle Plugins" 12 description = "SSDT Gradle Plugins"
13 13
14 group="org.ssdt_ohio" 14 group="org.ssdt_ohio"
15 15
16 apply plugin: 'groovy' 16 apply plugin: 'groovy'
17 apply plugin: 'idea' 17 apply plugin: 'idea'
18 apply plugin: 'maven' 18 apply plugin: 'maven-publish'
19 19
20 defaultTasks 'clean', 'build' 20 defaultTasks 'clean', 'build'
21 21
22 sourceCompatibility = 1.8 22 sourceCompatibility = 1.8
23 23
24 dependencies { 24 dependencies {
25 compile localGroovy() 25 implementation localGroovy()
26 compile gradleApi() 26 implementation gradleApi()
27 compile "org.asciidoctor:asciidoctorj:1.5.4" 27 implementation "org.asciidoctor:asciidoctorj:1.5.4"
28 compile 'org.apache.commons:commons-lang3:3.4' 28 implementation 'org.apache.commons:commons-lang3:3.4'
29 29
30 testCompile 'junit:junit:4.10' 30 testImplementation 'junit:junit:4.10'
31 } 31 }
32 32
33 idea.project { 33 idea.project {
34 jdkName = '1.8' 34 jdkName = '1.8'
35 } 35 }