forked from micronaut-projects/micronaut-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (24 loc) · 824 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
dependencies {
compile project(":configurations:kafka")
compile dependencyModuleVersion("kafka", "kafka-streams")
compileOnly project(":inject-java")
testCompile project(":management")
testCompile project(":inject-groovy")
testCompile project(":inject-java")
testCompile "org.apache.kafka:kafka-clients:${kafkaVersion}:test"
testCompile "org.apache.kafka:kafka_2.12:${kafkaVersion}"
testCompile "org.apache.kafka:kafka_2.12:${kafkaVersion}:test"
}
//tasks.withType(Test) {
// testLogging {
// showStandardStreams = true
// }
// beforeTest {
// System.out.println("STARTING: ${it.className}.$it.name")
// System.out.flush()
// }
// afterTest {
// System.out.println("FINISHED: ${it.className}.$it.name")
// System.out.flush()
// }
//}