@@ -19,6 +19,7 @@ def selenium_java_deps():
19
19
"org.slf4j:slf4j-api" ,
20
20
],
21
21
),
22
+ "com.github.stephenc.jcip:jcip-annotations:1.0-1" ,
22
23
"com.google.code.gson:gson:2.10.1" ,
23
24
"com.google.guava:guava:31.1-jre" ,
24
25
"com.google.auto:auto-common:1.2.1" ,
@@ -27,6 +28,17 @@ def selenium_java_deps():
27
28
"com.google.googlejavaformat:google-java-format:jar:1.17.0" ,
28
29
"com.graphql-java:graphql-java:20.2" ,
29
30
"com.graphql-java:java-dataloader:3.2.0" ,
31
+ "dev.failsafe:failsafe:3.3.1" ,
32
+ maven .artifact (
33
+ group = "junit" ,
34
+ artifact = "junit" ,
35
+ version = "4.13.2" ,
36
+ exclusions = [
37
+ "org.hamcrest:hamcrest-all" ,
38
+ "org.hamcrest:hamcrest-core" ,
39
+ "org.hamcrest:hamcrest-library" ,
40
+ ],
41
+ ),
30
42
"io.grpc:grpc-context:1.55.1" ,
31
43
"io.lettuce:lettuce-core:6.2.4.RELEASE" ,
32
44
"io.netty:netty-buffer:%s" % netty_version ,
@@ -58,29 +70,10 @@ def selenium_java_deps():
58
70
"io.opentelemetry:opentelemetry-sdk-trace:%s" % opentelemetry_version ,
59
71
"io.ous:jtoml:2.0.0" ,
60
72
"it.ozimov:embedded-redis:0.7.3" ,
61
- maven .artifact (
62
- group = "junit" ,
63
- artifact = "junit" ,
64
- version = "4.13.2" ,
65
- exclusions = [
66
- "org.hamcrest:hamcrest-all" ,
67
- "org.hamcrest:hamcrest-core" ,
68
- "org.hamcrest:hamcrest-library" ,
69
- ],
70
- ),
71
- "org.junit.jupiter:junit-jupiter-api:%s" % junit_jupiter_version ,
72
- "org.junit.jupiter:junit-jupiter-engine:%s" % junit_jupiter_version ,
73
- "org.junit.jupiter:junit-jupiter-params:%s" % junit_jupiter_version ,
74
- "org.junit.platform:junit-platform-launcher:%s" % junit_platform_version ,
75
- "org.junit.platform:junit-platform-reporting:%s" % junit_platform_version ,
76
- "org.junit.platform:junit-platform-commons:%s" % junit_platform_version ,
77
- "org.junit.platform:junit-platform-engine:%s" % junit_platform_version ,
78
- "org.junit.platform:junit-platform-suite-engine:%s" % junit_platform_version ,
79
- "org.junit.platform:junit-platform-suite-api:%s" % junit_platform_version ,
80
73
"net.bytebuddy:byte-buddy:1.14.4" ,
81
- "dev.failsafe:failsafe:3.3.1" ,
82
74
"net.sourceforge.htmlunit:htmlunit-core-js:2.70.0" ,
83
75
"org.apache.commons:commons-exec:1.3" ,
76
+ "org.apache.logging.log4j:log4j-core:2.20.0" ,
84
77
"org.assertj:assertj-core:3.24.2" ,
85
78
maven .artifact (
86
79
group = "org.asynchttpclient" ,
@@ -91,18 +84,26 @@ def selenium_java_deps():
91
84
"io.netty:netty-transport-native-kqueue" ,
92
85
],
93
86
),
87
+ "org.bouncycastle:bcpkix-jdk15on:1.70" ,
94
88
"org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5" ,
95
89
"org.hamcrest:hamcrest:2.2" ,
96
90
"org.hsqldb:hsqldb:2.7.1" ,
91
+ "org.junit.jupiter:junit-jupiter-api:%s" % junit_jupiter_version ,
92
+ "org.junit.jupiter:junit-jupiter-engine:%s" % junit_jupiter_version ,
93
+ "org.junit.jupiter:junit-jupiter-params:%s" % junit_jupiter_version ,
94
+ "org.junit.platform:junit-platform-launcher:%s" % junit_platform_version ,
95
+ "org.junit.platform:junit-platform-reporting:%s" % junit_platform_version ,
96
+ "org.junit.platform:junit-platform-commons:%s" % junit_platform_version ,
97
+ "org.junit.platform:junit-platform-engine:%s" % junit_platform_version ,
98
+ "org.junit.platform:junit-platform-suite-engine:%s" % junit_platform_version ,
99
+ "org.junit.platform:junit-platform-suite-api:%s" % junit_platform_version ,
97
100
"org.mockito:mockito-core:4.11.0" ,
98
101
"org.mockito:mockito-inline:4.11.0" ,
102
+ "org.redisson:redisson:3.21.1" ,
103
+ "org.seleniumhq.selenium:htmlunit-driver:4.9.0" ,
99
104
"org.slf4j:slf4j-api:2.0.7" ,
100
105
"org.slf4j:slf4j-jdk14:2.0.7" ,
101
- "org.apache.logging.log4j:log4j-core:2.20.0" ,
102
106
"org.zeromq:jeromq:0.5.3" ,
103
- "org.seleniumhq.selenium:htmlunit-driver:4.9.0" ,
104
- "org.redisson:redisson:3.21.1" ,
105
- "com.github.stephenc.jcip:jcip-annotations:1.0-1" ,
106
107
],
107
108
excluded_artifacts = [
108
109
"org.hamcrest:hamcrest-all" , # Replaced by hamcrest 2
0 commit comments