-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
35 lines (27 loc) · 1005 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
34
35
plugins {
id("java")
id("io.freefair.lombok") version "8.0.1"
}
repositories {
mavenCentral()
}
val timefoldSolverVersion = "1.15.0"
val logbackVersion = "1.5.8"
group = "org.acme"
version = "1.0-SNAPSHOT"
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation("org.projectlombok:lombok:1.18.34")
annotationProcessor("org.projectlombok:lombok:1.18.34")
implementation(platform("ai.timefold.solver:timefold-solver-bom:$timefoldSolverVersion"))
implementation("ai.timefold.solver:timefold-solver-core")
testImplementation("ai.timefold.solver:timefold-solver-test")
runtimeOnly("ch.qos.logback:logback-classic:$logbackVersion")
implementation("org.hibernate.validator:hibernate-validator:8.0.0.Final")
implementation("jakarta.validation:jakarta.validation-api:3.0.2")
implementation("org.glassfish:jakarta.el:4.0.2")
}
tasks.test {
useJUnitPlatform()
}