From 0543c82018799030e77e6413d1d82e8b896287b2 Mon Sep 17 00:00:00 2001 From: banjjoknim Date: Tue, 2 Aug 2022 11:08:57 +0900 Subject: [PATCH] =?UTF-8?q?build=20:=20GraphQL=20Kotlin=20Spring=20Server?= =?UTF-8?q?=20=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 놀이터(예제 코드 작성)/graphql-kotlin/README.md | 1 + 놀이터(예제 코드 작성)/graphql-kotlin/build.gradle.kts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/놀이터(예제 코드 작성)/graphql-kotlin/README.md b/놀이터(예제 코드 작성)/graphql-kotlin/README.md index 371aae8..a8d1797 100644 --- a/놀이터(예제 코드 작성)/graphql-kotlin/README.md +++ b/놀이터(예제 코드 작성)/graphql-kotlin/README.md @@ -2,3 +2,4 @@ - [Getting Started](https://opensource.expediagroup.com/graphql-kotlin/docs/) - [Spring Server Overview](https://opensource.expediagroup.com/graphql-kotlin/docs/server/spring-server/spring-overview/) +- [MVN Repository - GraphQL Kotlin Spring Server](https://mvnrepository.com/artifact/com.expediagroup/graphql-kotlin-spring-server) diff --git a/놀이터(예제 코드 작성)/graphql-kotlin/build.gradle.kts b/놀이터(예제 코드 작성)/graphql-kotlin/build.gradle.kts index 2247574..21e6208 100644 --- a/놀이터(예제 코드 작성)/graphql-kotlin/build.gradle.kts +++ b/놀이터(예제 코드 작성)/graphql-kotlin/build.gradle.kts @@ -24,6 +24,8 @@ dependencies { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor") testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("io.projectreactor:reactor-test") + + implementation("com.expediagroup", "graphql-kotlin-spring-server", "6.0.0") } tasks.withType {