-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (20 loc) · 626 Bytes
/
build.gradle
File metadata and controls
25 lines (20 loc) · 626 Bytes
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
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'redis.clients:jedis:6.2.0'
implementation 'com.google.code.gson:gson:2.13.2'
implementation 'com.google.guava:guava:23.0'
compileOnly 'org.slf4j:slf4j-api:1.7.36'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.3'
}
test {
useJUnitPlatform()
}