view build.gradle @ 34:30f522dca380 version-0.4.6

Add repositories to build.gradle
author Kyle Miller <kyle.miller@mcoecn.org>
date Mon, 08 Aug 2022 15:04:01 +0100
parents 927f02ccc596
children 80e46acfd82a
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

repositories {
    maven { url 'https://docker.ssdt.io/artifactory/ssdt-repo' }
}

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
}