-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (18 loc) · 623 Bytes
/
build.gradle
File metadata and controls
24 lines (18 loc) · 623 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
description = "Testcontainers :: Orientdb"
dependencies {
api project(":testcontainers")
api "com.orientechnologies:orientdb-client:3.2.43"
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.4'
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.43"
}
tasks.japicmp {
classExcludes = [
"org.testcontainers.containers.OrientDBContainer"
]
}
test {
useJUnitPlatform()
}