Skip to content

Commit 085aecb

Browse files
committed
Including RC files info the main Java distribution package unless we're on the 3.0 track
1 parent cb0d713 commit 085aecb

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Rakefile

+1-4
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,6 @@ task :release => [
480480
'//java/server/src/org/openqa/selenium/server:server:zip',
481481
'//java/server/src/org/openqa/grid/selenium:selenium:zip',
482482
'//java/client/src/org/openqa/selenium:client-combined:zip',
483-
'//java/client/src/com/thoughtworks/selenium:leg-rc:zip',
484483
] do |t|
485484
# Unzip each of the deps and rename the pieces that need renaming
486485
renames = {
@@ -520,7 +519,6 @@ task :release => [
520519
cp "build/java/server/src/org/openqa/grid/selenium/selenium-standalone.jar", "build/dist/selenium-server-standalone-#{version}.jar"
521520
cp "build/java/server/src/org/openqa/grid/selenium/selenium.zip", "build/dist/selenium-server-#{version}.zip"
522521
cp "build/java/client/src/org/openqa/selenium/client-combined.zip", "build/dist/selenium-java-#{version}.zip"
523-
cp "build/java/client/src/com/thoughtworks/selenium/leg-rc-standalone.jar", "build/dist/leg-rc-#{version}.jar"
524522
end
525523

526524
task :push_release => [:release] do
@@ -537,8 +535,7 @@ task :push_release => [:release] do
537535
[
538536
{:file => "build/dist/selenium-server-standalone-#{version}.jar", :description => "Use this if you want to use the Selenium RC or Remote WebDriver or use Grid 2 without needing any additional dependencies"},
539537
{:file => "build/dist/selenium-server-#{version}.zip", :description => "All variants of the Selenium Server: stand-alone, jar with dependencies and sources."},
540-
{:file => "build/dist/selenium-java-#{version}.zip", :description => "The Java bindings for Selenium 2, including the WebDriver API clients. Download this if you want to use WebDriver API"},
541-
{:file => "build/dist/leg-rc-#{version}.jar", :description => "The Java bindings for Selenium 1, including the RC API clients. Download this if you want to use RC API"},
538+
{:file => "build/dist/selenium-java-#{version}.zip", :description => "The Java bindings for Selenium 2, including the WebDriver API clients. Download this if you want to use WebDriver API and the Selenium RC clients. Download this if you plan on just using the client-side pieces of Selenium"},
542539
].each do |file|
543540
puts "Uploading file #{file[:file]}..."
544541
sh "#{py} third_party/py/googlecode/googlecode_upload.py -s '#{file[:description]}' -p selenium #{file[:file]} -l Featured -u #{googlecode_username} -w #{googlecode_password}"

java/client/src/org/openqa/selenium/build.desc

+2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ java_library(name = "webdriver-api",
8888

8989
java_library(name = "client-combined",
9090
deps = [
91+
"//java/client/src/com/thoughtworks/selenium:leg-rc",
92+
"//java/client/src/com/thoughtworks/selenium/webdriven:webdriven",
9193
"//java/client/src/org/openqa/selenium/chrome",
9294
"//java/client/src/org/openqa/selenium/htmlunit",
9395
"//java/client/src/org/openqa/selenium/firefox",

0 commit comments

Comments
 (0)