-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
57 lines (48 loc) · 1.63 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.commercehub.gradle.plugin:gradle-avro-plugin:0.21.0"
}
}
plugins {
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'io.confluent.streaming-ops.microservices-orders'
version = '10.0.8'
sourceCompatibility = '11'
repositories {
mavenCentral()
maven {
url "https://packages.confluent.io/maven/"
}
}
apply plugin: "com.commercehub.gradle.plugin.avro"
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.apache.kafka:kafka-streams:2.8.0'
implementation 'org.apache.kafka:kafka-clients:2.8.0'
implementation 'org.springframework.kafka:spring-kafka:2.7.7'
implementation 'io.operatr:kpow-streams-agent:0.2.8'
compileOnly 'org.projectlombok:lombok'
// If you're using IDEA, this is helpful: https://projectlombok.org/setup/intellij
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.apache.avro:avro:1.10.0'
implementation 'io.confluent:kafka-streams-avro-serde:6.0.0'
implementation "io.vavr:vavr:0.10.3"
testImplementation 'org.awaitility:awaitility'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.kafka:spring-kafka-test'
testImplementation 'org.apache.kafka:kafka-streams-test-utils'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}