File tree Expand file tree Collapse file tree 3 files changed +27
-8
lines changed
java/client/src/org/openqa/selenium Expand file tree Collapse file tree 3 files changed +27
-8
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,22 @@ java_export(
24
24
# Nothing from third party
25
25
],
26
26
)
27
+
28
+ java_export (
29
+ name = "client-combined" ,
30
+ maven_coordinates = "org.seleniumhq.selenium:selenium-java:" + SE_VERSION ,
31
+ pom_template = ":template-pom" ,
32
+ exports = [
33
+ ":core" ,
34
+ "//java/client/src/org/openqa/selenium/chrome" ,
35
+ "//java/client/src/org/openqa/selenium/firefox" ,
36
+ "//java/client/src/org/openqa/selenium/firefox/xpi" ,
37
+ "//java/client/src/org/openqa/selenium/edge:edgeium" ,
38
+ "//java/client/src/org/openqa/selenium/edge/edgehtml" ,
39
+ "//java/client/src/org/openqa/selenium/ie" ,
40
+ "//java/client/src/org/openqa/selenium/opera" ,
41
+ "//java/client/src/org/openqa/selenium/remote" ,
42
+ "//java/client/src/org/openqa/selenium/safari" ,
43
+ "//java/client/src/org/openqa/selenium/support" ,
44
+ ],
45
+ )
Original file line number Diff line number Diff line change
1
+ load ("//java:maven.bzl" , "java_export" )
1
2
load ("//java:version.bzl" , "SE_VERSION" )
2
3
3
- java_library (
4
+ java_export (
4
5
name = "opera" ,
5
6
srcs = glob (["*.java" ]),
6
- tags = [
7
- "maven_coordinates=org.seleniumhq.selenium:selenium-opera-driver:%s" % SE_VERSION ,
8
- ],
7
+ maven_coordinates = "org.seleniumhq.selenium:selenium-opera-driver:%s" % SE_VERSION ,
8
+ pom_template = "//java/client/src/org/openqa/selenium:template-pom" ,
9
9
visibility = ["//visibility:public" ],
10
10
deps = [
11
11
"//java/client/src/org/openqa/selenium:core" ,
Original file line number Diff line number Diff line change
1
+ load ("//java:maven.bzl" , "java_export" )
1
2
load ("//java:version.bzl" , "SE_VERSION" )
2
3
3
- java_library (
4
+ java_export (
4
5
name = "http" ,
5
6
srcs = glob (["*.java" ]),
6
- tags = [
7
- "maven_coordinates=org.seleniumhq.selenium:selenium-http:%s" % SE_VERSION ,
8
- ],
7
+ maven_coordinates = "org.seleniumhq.selenium:selenium-http:%s" % SE_VERSION ,
8
+ pom_template = "//java/client/src/org/openqa/selenium:template-pom" ,
9
9
visibility = [
10
10
"//visibility:public" ,
11
11
],
You can’t perform that action at this time.
0 commit comments