-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the version of httpclient to 4.5.1 (including updating deps)
This also adds the BUCK files "maven_coords".
- Loading branch information
Showing
19 changed files
with
56 additions
and
31 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
prebuilt_jar(name = 'commons-codec', | ||
prebuilt_jar( | ||
name = 'commons-codec', | ||
maven_coords = 'commons-codec:commons-codec:jar:1.10', | ||
binary_jar = 'commons-codec-1.10.jar', | ||
source_jar = 'commons-codec-1.10-sources.jar', | ||
source_jar = 'commons-codec-1.10.jar', | ||
visibility = [ | ||
'//third_party/java/...', | ||
'//third_party/java/...' | ||
], | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
prebuilt_jar(name = 'commons-logging', | ||
binary_jar = 'commons-logging-1.1.3.jar', | ||
prebuilt_jar( | ||
name = 'commons-logging', | ||
maven_coords = 'commons-logging:commons-logging:jar:1.2', | ||
binary_jar = 'commons-logging-1.2.jar', | ||
source_jar = 'commons-logging-1.2-sources.jar', | ||
visibility = [ | ||
'//java/server/src/org/openqa/selenium/remote/server:sessions', | ||
'//java/server/src/org/openqa/selenium/server:server', | ||
'//third_party/java/...', | ||
], | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
java_library(name = "commons-logging", | ||
deps = [ | ||
"commons-logging-1.1.3.jar" | ||
"commons-logging-1.2.jar" | ||
] | ||
) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,40 @@ | ||
java_library(name = "httpclient", | ||
java_library( | ||
name = 'httpclient', | ||
exported_deps = [ | ||
':client', | ||
':core', | ||
':mime', | ||
], | ||
deps = [ | ||
'//third_party/java/apache-mime4j:apache-mime4j', | ||
'//third_party/java/commons-codec:commons-codec', | ||
'//third_party/java/commons-logging:commons-logging', | ||
'//third_party/java/commons-logging:commons-logging' | ||
], | ||
visibility = ['PUBLIC'], | ||
) | ||
|
||
prebuilt_jar(name = 'client', | ||
binary_jar = 'httpclient-4.5.jar', | ||
source_jar = 'httpclient-4.5-sources.jar', | ||
prebuilt_jar( | ||
name = 'client', | ||
maven_coords = 'org.apache.httpcomponents:httpclient:jar:4.5.1', | ||
binary_jar = 'httpclient-4.5.1.jar', | ||
source_jar = 'httpclient-4.5.1-sources.jar', | ||
deps = [ | ||
':core', | ||
'//third_party/java/commons-codec:commons-codec', | ||
'//third_party/java/commons-logging:commons-logging' | ||
], | ||
) | ||
|
||
prebuilt_jar(name = 'core', | ||
binary_jar = 'httpcore-4.4.1.jar', | ||
source_jar = 'httpcore-4.4.1-sources.jar', | ||
prebuilt_jar( | ||
name = 'core', | ||
maven_coords = 'org.apache.httpcomponents:httpcore:jar:4.4.3', | ||
binary_jar = 'httpcore-4.4.3.jar', | ||
source_jar = 'httpcore-4.4.3-sources.jar', | ||
) | ||
|
||
prebuilt_jar(name = 'mime', | ||
prebuilt_jar( | ||
name = 'mime', | ||
maven_coords = 'org.apache.httpcomponents:httpmime:jar:4.5', | ||
binary_jar = 'httpmime-4.5.jar', | ||
source_jar = 'httpmime-4.5-sources.jar', | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+690 KB
...httpcomponents/httpclient-4.5-sources.jar → ...tpcomponents/httpclient-4.5.1-sources.jar
Binary file not shown.
Binary file renamed
BIN
+711 KB
...ty/java/httpcomponents/httpclient-4.5.jar → .../java/httpcomponents/httpclient-4.5.1.jar
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+396 KB
...httpcomponents/httpcore-4.4.1-sources.jar → ...httpcomponents/httpcore-4.4.3-sources.jar
Binary file not shown.
Binary file not shown.