-
Notifications
You must be signed in to change notification settings - Fork 46
/
build.gradle.kts
24 lines (20 loc) · 936 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
plugins {
id("spring-conventions")
}
description = "rating"
dependencies {
implementation(project(":rest"))
implementation(project(":security"))
implementation(project(":event-handling"))
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.cloud:spring-cloud-starter-bootstrap")
implementation("org.springframework.cloud:spring-cloud-starter-netflix-eureka-client")
implementation("org.springframework.cloud:spring-cloud-starter-config")
implementation("org.springframework.cloud:spring-cloud-starter-bus-kafka")
implementation("net.logstash.logback:logstash-logback-encoder")
implementation("org.springframework.kafka:spring-kafka")
implementation("org.hibernate:hibernate-jpamodelgen")
implementation("org.flywaydb:flyway-core")
runtimeOnly("org.postgresql:postgresql")
}