-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (47 loc) · 1.76 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
plugins {
id 'org.springframework.boot' version '3.1.3'
id 'io.spring.dependency-management' version '1.1.3'
id 'org.jetbrains.kotlin.jvm' version '1.8.22'
id 'org.jetbrains.kotlin.kapt' version '1.8.22'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.22'
id 'org.jetbrains.kotlin.plugin.spring' version '1.8.22'
}
group = 'io.github.zh-efimenko.kafka-streams'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
dependencies {
// spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// kotlin
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1'
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'io.github.microutils:kotlin-logging:3.0.5'
// metrics
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'io.micrometer:micrometer-core'
// kafka
implementation 'org.springframework.kafka:spring-kafka'
implementation 'org.apache.kafka:kafka-streams'
// devtools
developmentOnly 'org.springframework.boot:spring-boot-docker-compose'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
kapt 'org.springframework.boot:spring-boot-configuration-processor'
// test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.apache.kafka:kafka-streams-test-utils'
}
tasks.named('compileKotlin', KotlinCompilationTask.class) {
compilerOptions {
freeCompilerArgs.add('-Xjsr305=strict')
}
}
tasks.named('test') {
useJUnitPlatform()
}