-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
78 lines (60 loc) · 2.28 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
plugins {
id 'org.springframework.boot' version '3.2.3'
id 'io.spring.dependency-management' version '1.1.4'
id 'java'
}
group = 'com.struchev.invest'
version = '1.0.0'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// spring
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'io.hypersistence:hypersistence-utils-hibernate-63:3.7.3'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// retry
implementation 'org.springframework.retry:spring-retry:2.0.5'
implementation 'org.springframework:spring-aspects:6.1.5'
// telegram
implementation 'com.github.pengrad:java-telegram-bot-api:7.0.0'
// client
implementation 'org.reactivestreams:reactive-streams:1.0.3'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
implementation 'io.reactivex.rxjava3:rxjava:3.0.9'
// tinkoff grpc lib
implementation 'ru.tinkoff.piapi:java-sdk-core:1.5'
implementation 'io.grpc:grpc-api:1.43.0'
// monitoring
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
// lombok
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
runtimeOnly 'org.postgresql:postgresql'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.30'
testCompileOnly 'org.projectlombok:lombok:1.18.30'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.testcontainers:testcontainers:1.19.7'
testImplementation 'org.testcontainers:postgresql:1.15.3'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
}
test {
useJUnitPlatform()
}
bootBuildImage {
imageName = "romanew/invest:latest"
}
bootRun {
systemProperties = System.properties
}