forked from tailrocks/graphql-java-datetime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
25 lines (20 loc) · 768 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
25 lines (20 loc) · 768 Bytes
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
plugins {
id("com.tailrocks.kotlin")
id("com.adarshr.test-logger")
id("io.spring.dependency-management")
id("org.springframework.boot")
}
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"))
implementation("org.springframework.boot:spring-boot-starter-web")
// DGS Framework
implementation(platform(libs.boms.dgs))
implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation(libs.commons.text)
}