2021-05-29 13:45:33 +03:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
|
|
|
description = 'The GRIND (GRoovy INteractive Dataforge) environment'
|
|
|
|
|
|
|
|
compileGroovy.dependsOn(compileKotlin)
|
|
|
|
compileGroovy.classpath += files(compileKotlin.destinationDir)
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-13 13:30:39 +03:00
|
|
|
api project(":dataforge-core")
|
|
|
|
// https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all
|
|
|
|
api 'org.codehaus.groovy:groovy-all:3.0.9'
|
2021-05-29 13:45:33 +03:00
|
|
|
|
2021-11-13 13:30:39 +03:00
|
|
|
|
|
|
|
testImplementation project(":dataforge-gui")
|
2021-05-29 13:45:33 +03:00
|
|
|
}
|