view 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
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 = 'init50'
apply from: "${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'

defaultTasks 'clean', 'build'

sourceCompatibility = 1.8

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

    testCompile 'junit:junit:4.10'
}

idea.project {
    jdkName = '1.8'
}

idea.module {
    downloadSources = true
    downloadJavadoc = true
}