2021-08-08 12:33:34 +07:00
|
|
|
plugins {
|
|
|
|
id("org.springframework.boot")
|
|
|
|
id("io.spring.dependency-management")
|
|
|
|
kotlin("jvm")
|
|
|
|
kotlin("plugin.spring")
|
|
|
|
kotlin("plugin.jpa")
|
|
|
|
id("com.netflix.dgs.codegen")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-08-08 12:39:19 +07:00
|
|
|
api(project(":cubetiq-security-jwt"))
|
|
|
|
|
2022-10-06 09:49:51 +07:00
|
|
|
implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:5.3.0"))
|
2022-05-27 12:30:12 +07:00
|
|
|
implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter")
|
|
|
|
runtimeOnly("com.netflix.graphql.dgs:graphql-dgs-subscriptions-websockets-autoconfigure")
|
2021-08-08 12:33:34 +07:00
|
|
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-security")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
|
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
|
|
|
|
|
|
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
|
|
|
runtimeOnly("org.postgresql:postgresql")
|
|
|
|
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<Test> {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<com.netflix.graphql.dgs.codegen.gradle.GenerateJavaTask> {
|
|
|
|
packageName = "com.cubetiqs.graphql.demo.dgmodel"
|
|
|
|
schemaPaths = mutableListOf("${projectDir}/src/main/resources/schema")
|
|
|
|
generateClient = true
|
|
|
|
}
|