|
@@ -10,19 +10,17 @@ plugins {
|
|
|
id("org.springframework.boot")
|
|
|
kotlin("jvm")
|
|
|
kotlin("plugin.spring")
|
|
|
- kotlin("plugin.jpa")
|
|
|
+// kotlin("plugin.jpa")
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
implementation(project(path = ":shared:cloud"))
|
|
|
implementation(project(path = ":shared:util"))
|
|
|
- implementation("org.springframework.cloud:spring-cloud-starter-openfeign")
|
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
implementation("org.springframework.boot:spring-boot-configuration-processor")
|
|
|
implementation("org.springframework.cloud:spring-cloud-starter-gateway")
|
|
|
implementation("org.springframework.cloud:spring-cloud-gateway-webflux")
|
|
|
- implementation("org.springframework.boot:spring-boot-starter-data-redis")
|
|
|
implementation("io.jsonwebtoken:jjwt-api")
|
|
|
implementation("io.jsonwebtoken:jjwt-impl")
|
|
|
implementation("io.jsonwebtoken:jjwt-jackson")
|
|
@@ -32,6 +30,7 @@ dependencies {
|
|
|
implementation(kotlin("stdlib-jdk8"))
|
|
|
implementation(project(path = ":services:service-verify", configuration = "lib"))
|
|
|
implementation(project(path = ":services:service-token", configuration = "lib"))
|
|
|
+ runtimeOnly("mysql:mysql-connector-java")
|
|
|
}
|
|
|
|
|
|
dependencyManagement {
|