-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (50 loc) · 1.84 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.10'
id 'io.spring.dependency-management' version '1.1.6'
id 'com.adarshr.test-logger' version '3.2.0'
}
group = 'com.webatspeed.subscription'
version = '0.3.0'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
all*.exclude group: 'commons-logging', module: 'commons-logging'
}
repositories {
mavenCentral()
}
dependencies {
def awsSdkVersion = "2.28.26"
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "software.amazon.awssdk:s3:$awsSdkVersion"
implementation "software.amazon.awssdk:sesv2:$awsSdkVersion"
implementation 'com.sun.mail:jakarta.mail:2.0.1'
implementation 'io.github.resilience4j:resilience4j-spring-boot3:2.2.0'
implementation 'org.springframework.boot:spring-boot-starter-aop:3.3.4'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'net.datafaker:datafaker:2.4.0'
testImplementation 'de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring31x:4.9.3'
constraints {
testImplementation('org.apache.commons:commons-compress:1.27.1') {
because 'version <=1.25.0 pulled from embedded mongo has vulnerabilities'
}
}
testImplementation 'org.instancio:instancio-junit:5.0.2'
testImplementation 'org.awaitility:awaitility:4.2.2'
}
tasks.named('test') {
useJUnitPlatform()
}
bootBuildImage {
createdDate = "now"
}