-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
64 lines (50 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.1'
id 'io.spring.dependency-management' version '1.1.5'
}
group = 'tarantool.client.example'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
mavenCentral()
}
ext {
tarantoolClientVersion = '1.1.0'
micrometerVersion = '1.13.1'
springBootStarterWsVersion = '3.3.1'
findbugsVersion = 'jsr305:3.0.2'
classGraphVersion = '4.8.157'
}
dependencies {
// Spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// google code findbugs
implementation "com.google.code.findbugs:${findbugsVersion}"
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Tarantool
implementation "io.tarantool:tarantool-client:${tarantoolClientVersion}"
// Micrometer
implementation "io.micrometer:micrometer-core:${micrometerVersion}"
// ClassGraph
implementation "io.github.classgraph:classgraph:${classGraphVersion}"
// Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.ws:spring-ws-test'
}
tasks.named('test') {
useJUnitPlatform()
}