-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
29 lines (23 loc) · 888 Bytes
/
build.gradle.kts
File metadata and controls
29 lines (23 loc) · 888 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
26
27
28
29
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-spring-boot-autoconfigure"))
// Spring Boot
implementation("org.springframework.boot:spring-boot-starter-graphql")
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")
}