-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
90 lines (71 loc) · 2.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '3.2.0'
id 'io.spring.dependency-management' version '1.1.4'
id "com.google.protobuf" version "0.9.4"
}
group = 'io.goboolean'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '19'
}
application {
mainClassName = 'io.goboolean.streams.Application'
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
configurations {
testImplementation.exclude module: "logback-classic"
}
dependencies {
implementation ('org.springframework.boot:spring-boot-starter') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
implementation 'org.apache.logging.log4j:log4j-api'
implementation 'org.apache.logging.log4j:log4j-core'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl'
runtimeOnly 'org.slf4j:slf4j-api'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
implementation 'org.springframework.kafka:spring-kafka'
implementation 'org.apache.kafka:kafka-streams:3.4.0'
implementation 'org.apache.kafka:kafka-clients:3.6.0'
implementation 'com.google.protobuf:protobuf-java:3.23.4'
implementation 'com.google.protobuf:protobuf-java-util:3.23.4'
implementation 'com.google.protobuf:protoc:3.23.4'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'io.etcd:jetcd-core:0.7.7'
implementation 'io.opentelemetry:opentelemetry-api:1.32.0'
implementation 'io.opentelemetry:opentelemetry-sdk:1.32.0'
implementation 'io.opentelemetry:opentelemetry-exporter-otlp:1.32.0'
implementation 'io.opentelemetry:opentelemetry-exporter-common:1.32.0'
implementation 'io.opentelemetry.semconv:opentelemetry-semconv:1.23.1-alpha'
implementation 'io.opentelemetry.instrumentation:opentelemetry-log4j-appender-2.17:1.32.0-alpha'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testCompileOnly 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation 'org.springframework.kafka:spring-kafka-test'
testImplementation 'org.apache.kafka:kafka-streams-test-utils:3.6.1'
}
protobuf {
protoc {
artifact = 'com.google.protobuf:protoc:3.23.4'
}
}
sourceSets {
main {
proto {
srcDir 'src/main/resources'
}
}
}
processResources {
duplicatesStrategy = 'exclude'
}