17 lines
568 B
Plaintext
17 lines
568 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
id("org.springframework.boot")
|
|
id("io.spring.dependency-management")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
implementation("org.springframework.boot:spring-boot-starter-amqp")
|
|
implementation("org.springframework.boot:spring-boot-starter-data-redis")
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
}
|