forked from spring-projects-experimental/spring-fu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
25 lines (19 loc) · 872 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
plugins {
id("org.jetbrains.kotlin.jvm")
id("io.spring.dependency-management")
id("java-library")
}
dependencies {
implementation("org.springframework.boot:spring-boot")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation(project(":kofu"))
implementation(project(":autoconfigure-adapter-thymeleaf"))
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.springframework:spring-test")
testImplementation("io.projectreactor:reactor-test")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.testcontainers:testcontainers")
testImplementation("org.springframework.boot:spring-boot-starter-thymeleaf")
}