-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild.gradle.kts
32 lines (25 loc) · 943 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
25
26
27
28
29
30
31
32
plugins {
id("com.adarshr.test-logger")
id("io.spring.dependency-management")
id("org.springframework.boot")
id("kotest-conventions")
}
the<io.spring.gradle.dependencymanagement.dsl.DependencyManagementExtension>().apply {
imports {
mavenBom(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
}
}
dependencies {
implementation(project(":graphql-datetime-dgs-starter"))
// DGS Framework
implementation(platform(libs.boms.dgs))
implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter")
// Spring Boot
implementation("org.springframework.boot:spring-boot-starter-web")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation(libs.commons.text)
// Kotest
testImplementation(libs.kotest.extensions.spring)
// Jackson
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
}