-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (44 loc) · 1.9 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'io.github.funchcode'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-web'
// https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter
implementation 'org.redisson:redisson-spring-boot-starter:3.24.3'
// https://mvnrepository.com/artifact/software.amazon.awssdk/elasticache
implementation 'software.amazon.awssdk:elasticache:2.21.10'
// https://mvnrepository.com/artifact/io.awspring.cloud/spring-cloud-aws-sqs
implementation 'io.awspring.cloud:spring-cloud-aws-sqs:3.0.3'
// https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-aws-messaging
implementation 'org.springframework.cloud:spring-cloud-aws-messaging:2.2.6.RELEASE'
// https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-dynamodb
implementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.583'
// https://mvnrepository.com/artifact/org.testcontainers/junit-jupiter
testImplementation 'org.testcontainers:junit-jupiter:1.19.1'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.amqp:spring-rabbit-test'
}
tasks.named('test') {
useJUnitPlatform()
}