view 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
line wrap: on
line source

/*
 * Copyright (c) 2020.  Ohio Department of Education. - All Rights Reserved.
 * Unauthorized copying of this file, in any medium, is strictly prohibited.
 * Written by the State Software Development Team (http://ssdt.oecn.k12.oh.us/)
 *
 */

def ssdtInit = 'init70'
apply from: resources.text.fromInsecureUri("${gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit'}/${ssdtInit}.gradle")

description = "SSDT Gradle Plugins"

group="org.ssdt_ohio"

apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'maven-publish'

defaultTasks 'clean', 'build'

sourceCompatibility = 1.8

dependencies {
    implementation localGroovy()
    implementation gradleApi()
    implementation "org.asciidoctor:asciidoctorj:1.5.4"
    implementation 'org.apache.commons:commons-lang3:3.4'

    testImplementation 'junit:junit:4.10'
}

idea.project {
    jdkName = '1.8'
}

idea.module {
    downloadSources = true
    downloadJavadoc = true
}