-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
33 lines (25 loc) · 935 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
33
plugins {
id("java")
}
group = "com.cjmckenzie"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation("com.fasterxml.jackson.core:jackson-databind:2.16.1")
implementation("co.elastic.clients:elasticsearch-java:8.12.2")
compileOnly("org.projectlombok:lombok:1.18.30")
annotationProcessor("org.projectlombok:lombok:1.18.30")
testCompileOnly("org.projectlombok:lombok:1.18.30")
testAnnotationProcessor("org.projectlombok:lombok:1.18.30")
implementation("org.springframework.boot:spring-boot-starter-web:3.2.3")
testImplementation("org.springframework.boot:spring-boot-starter-test:3.2.3")
implementation("org.apache.commons:commons-lang3:3.14.0")
implementation("com.thedeanda:lorem:2.2")
}
tasks.test {
useJUnitPlatform()
}