-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlibraries.gradle
33 lines (30 loc) · 1.78 KB
/
libraries.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
ext {
awaitilityVersion = '4.0.1'
testContainersVersion = '1.12.2'
//noinspection GroovyAssignabilityCheck
libraries = [
aspectjweaver : "org.aspectj:aspectjweaver",
jacksonDataBind : "com.fasterxml.jackson.core:jackson-databind",
lettuce : "io.lettuce:lettuce-core",
lombok : "org.projectlombok:lombok",
springBoot : "org.springframework.boot:spring-boot",
springBootAutoConfigure: "org.springframework.boot:spring-boot-autoconfigure",
springBootConfigurationProcessor: "org.springframework.boot:spring-boot-configuration-processor",
springBootStarter : "org.springframework.boot:spring-boot-starter",
springBootStarterAmqp : "org.springframework.boot:spring-boot-starter-amqp",
springBootStarterJdbc : "org.springframework.boot:spring-boot-starter-jdbc",
springBootStarterJson : "org.springframework.boot:spring-boot-starter-json",
springDataRedis : "org.springframework.boot:spring-boot-starter-data-redis",
springTx : "org.springframework:spring-tx",
// test libraries
awaitility : "org.awaitility:awaitility:${awaitilityVersion}",
hikariCP : "com.zaxxer:HikariCP",
junitJupiterApi : "org.junit.jupiter:junit-jupiter-api",
junitJupiterParams : "org.junit.jupiter:junit-jupiter-params",
junitJupiterEngine : "org.junit.jupiter:junit-jupiter-engine",
mockitoCore : "org.mockito:mockito-core",
mockitoJunitJupiter : "org.mockito:mockito-junit-jupiter",
springBootTest : "org.springframework.boot:spring-boot-starter-test",
testContainers : "org.testcontainers:junit-jupiter:${testContainersVersion}"
]
}