-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
70 lines (52 loc) · 1.81 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
plugins {
id 'org.springframework.boot' version '2.7.4'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
id 'java'
}
group = 'com.yuriytkach.demo'
version = '0.0.2-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
ext {
set('testcontainersVersion', "1.17.3")
}
dependencies {
implementation platform('software.amazon.awssdk:bom:2.17.276')
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation 'io.micrometer:micrometer-core'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'software.amazon.awssdk:s3'
implementation 'net.logstash.logback:logstash-logback-encoder:7.2'
implementation 'com.hierynomus:sshj:0.34.0'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.apache.poi:poi-ooxml:5.2.2'
implementation 'one.util:streamex:0.8.1'
testImplementation 'io.rest-assured:rest-assured'
testImplementation 'io.rest-assured:spring-mock-mvc'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation "com.github.tomakehurst:wiremock-jre8:2.34.0"
testImplementation platform('com.amazonaws:aws-java-sdk-bom:1.12.307')
testImplementation "com.amazonaws:aws-java-sdk-core"
testImplementation "org.testcontainers:localstack"
testImplementation('com.icegreen:greenmail:1.6.11')
}
dependencyManagement {
imports {
mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}"
}
}
tasks.named('test') {
useJUnitPlatform()
}