numass-framework/grind/build.gradle

15 lines
419 B
Groovy
Raw Normal View History

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-11-13 13:30:39 +03:00
testImplementation project(":dataforge-gui")
}