Skip to content

Commit 786489a

Browse files
committed
[grid] External datastore JDBC-backed for Session Queue
1 parent 79149e8 commit 786489a

File tree

7 files changed

+1061
-0
lines changed

7 files changed

+1061
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
load("@rules_jvm_external//:defs.bzl", "artifact")
2+
load("//java:defs.bzl", "java_export")
3+
load("//java:version.bzl", "SE_VERSION")
4+
5+
java_export(
6+
name = "jdbc",
7+
srcs = glob(["*.java"]),
8+
maven_coordinates = "org.seleniumhq.selenium:selenium-session-queue-jdbc:%s" % SE_VERSION,
9+
pom_template = "//java/src/org/openqa/selenium:template-pom",
10+
tags = [
11+
"release-artifact",
12+
],
13+
visibility = [
14+
"//visibility:public",
15+
],
16+
exports = [
17+
"//java/src/org/openqa/selenium/grid",
18+
],
19+
deps = [
20+
"//java:auto-service",
21+
"//java/src/org/openqa/selenium/grid",
22+
"//java/src/org/openqa/selenium/json",
23+
"//java/src/org/openqa/selenium/remote",
24+
artifact("com.beust:jcommander"),
25+
artifact("com.google.guava:guava"),
26+
],
27+
)

0 commit comments

Comments
 (0)