-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (30 loc) · 1.16 KB
/
build.gradle
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
36
37
plugins {
id 'application'
}
group = 'ua.dev.gal'
version = "${version}"
repositories {
mavenCentral()
}
sourceCompatibility = 1.17
targetCompatibility = 1.17
application {
mainClass.set("ua.dev.gal.calctrainer.Main")
}
dependencies {
implementation "org.springframework.boot:spring-boot-starter:${springBootVer}"
implementation "org.springframework.shell:spring-shell-starter:${springBootVer}"
implementation "org.springframework.shell:spring-shell-starter-jna:${springBootVer}"
compileOnly "org.projectlombok:lombok:${lombokVer}"
annotationProcessor "org.projectlombok:lombok:${lombokVer}"
testImplementation "org.springframework.boot:spring-boot-starter-test:${springBootVer}"
testImplementation "org.springframework.shell:spring-shell-starter-test:${springBootVer}"
testImplementation "org.awaitility:awaitility:${awaitilityVer}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVer}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVer}"
testCompileOnly "org.projectlombok:lombok:${lombokVer}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVer}"
}
test {
useJUnitPlatform()
}