sysmon/build.gradle
Mark Nellemann 94eb0d17f9 Cleanup in build files.
Handle errors in http route.
Some steps towards influx in collector.
2021-05-04 17:54:47 +02:00

21 lines
493 B
Groovy

subprojects {
apply plugin: 'java'
apply plugin: 'groovy'
dependencies {
testImplementation 'org.spockframework:spock-core:2.0-M5-groovy-3.0'
testImplementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation "org.slf4j:slf4j-simple:${slf4jVersion}"
}
repositories {
mavenLocal()
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
}