view build.gradle @ 23:e2d02e8742be

usasr-1307: for render tables for properties and reportable properties with label and group names
author smith@nwoca.org
date Wed, 16 Mar 2016 23:24:26 +0100
parents 8400a7db1330
children e531fc141b17
line wrap: on
line source

def ssdtInit = GradleVersion.current() < GradleVersion.version('2.0') ? 'init' : 'init20'
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.6

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.6'
}

idea.module {
    downloadSources = true
    downloadJavadoc = true
}