@@ -111,6 +111,7 @@ task '//java/client/test/org/openqa/selenium/environment/webserver:webserver:ube
111
111
JAVA_RELEASE_TARGETS = [
112
112
'//java/client/src/org/openqa/selenium:core' ,
113
113
'//java/client/src/org/openqa/selenium:selenium' ,
114
+ '//java/client/src/org/openqa/selenium/support:support' ,
114
115
'//java/client/src/org/openqa/selenium/chrome:chrome' ,
115
116
'//java/client/src/org/openqa/selenium/edge:edge' ,
116
117
'//java/client/src/org/openqa/selenium/firefox:firefox' ,
@@ -119,6 +120,7 @@ JAVA_RELEASE_TARGETS = [
119
120
'//java/client/src/org/openqa/selenium/remote:remote' ,
120
121
'//java/client/src/org/openqa/selenium/safari:safari' ,
121
122
'//java/server/src/com/thoughtworks/selenium:leg-rc' ,
123
+ '//java/server/src/org/openqa/selenium/remote/server:server' ,
122
124
]
123
125
124
126
@@ -547,7 +549,16 @@ task :'publish-maven' => JAVA_RELEASE_TARGETS do |t|
547
549
t . prerequisites . each do |p |
548
550
if JAVA_RELEASE_TARGETS . include? ( p )
549
551
creds = read_user_pass_from_m2_settings ( )
550
- Buck ::buck_cmd . call ( 'publish' , [ '--remote-repo' , 'https://oss.sonatype.org/service/local/staging/deploy/maven2' , '--include-source' , '-u' , creds [ 0 ] , '-p' , creds [ 1 ] , p ] )
552
+ Buck ::buck_cmd . call ( 'publish' , [ '--remote-repo' , 'https://oss.sonatype.org/service/local/staging/deploy/maven2' , '--include-source' , '--include-javadoc' , '-u' , creds [ 0 ] , '-p' , creds [ 1 ] , p ] )
553
+ end
554
+ end
555
+ end
556
+
557
+ task :'maven-install' => JAVA_RELEASE_TARGETS do |t |
558
+ t . prerequisites . each do |p |
559
+ if JAVA_RELEASE_TARGETS . include? ( p )
560
+ creds = read_user_pass_from_m2_settings ( )
561
+ Buck ::buck_cmd . call ( 'publish' , [ '--remote-repo' , "file://#{ ENV [ 'HOME' ] } /.m2/repository" , '--include-source' , '--include-javadoc' , '-u' , creds [ 0 ] , '-p' , creds [ 1 ] , p , '-v' , '10' ] )
551
562
end
552
563
end
553
564
end
0 commit comments