diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2021-07-14 22:30:06 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2021-07-16 23:47:30 +0200 |
commit | 02344254ea7ddd97c21ea7b50fcb9a49932c3251 (patch) | |
tree | 0421109824b637716a84ee58f3e09b541bd00ae2 /lib | |
parent | e0ba98edd2b40876aa7aaae4b59a24ae2412a20a (diff) | |
download | jgit-02344254ea7ddd97c21ea7b50fcb9a49932c3251.tar.gz jgit-02344254ea7ddd97c21ea7b50fcb9a49932c3251.zip |
Update orbit to I20210713220109
update
- org.apache.commons.compress to 1.20.0.v20210713-192
- org.bouncycastle.bcpg to 1.69.0.v20210713-1924
- org.bouncycastle.bcpkix to 1.69.0.v20210713-1924
- org.bouncycastle.bcprov to 1.69.0.v20210713-1924
- add org.bouncycastle.bcutil 1.69.0.v20210713-1924
In bazel build don't expose bouncycastle to org.eclipse.jgit since it's
not used there anymore since code depending on bouncycastle was moved to
org.eclipse.jgit.gpg.bc.
CQ: 21771
CQ: 23471
CQ: 23472
CQ: 23473
CQ: 23474
Change-Id: Id3d94c00c39bbc57e3f49a61150841249dc3985c
Diffstat (limited to 'lib')
-rw-r--r-- | lib/BUILD | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -159,7 +159,6 @@ java_library( java_library( name = "bcpg", visibility = [ - "//org.eclipse.jgit:__pkg__", "//org.eclipse.jgit.gpg.bc:__pkg__", "//org.eclipse.jgit.gpg.bc.test:__pkg__", "//org.eclipse.jgit.test:__pkg__", @@ -170,7 +169,6 @@ java_library( java_library( name = "bcprov", visibility = [ - "//org.eclipse.jgit:__pkg__", "//org.eclipse.jgit.gpg.bc:__pkg__", "//org.eclipse.jgit.gpg.bc.test:__pkg__", "//org.eclipse.jgit.test:__pkg__", @@ -179,9 +177,18 @@ java_library( ) java_library( + name = "bcutil", + visibility = [ + "//org.eclipse.jgit.gpg.bc:__pkg__", + "//org.eclipse.jgit.gpg.bc.test:__pkg__", + "//org.eclipse.jgit.test:__pkg__", + ], + exports = ["@bcutil//jar"], +) + +java_library( name = "bcpkix", visibility = [ - "//org.eclipse.jgit:__pkg__", "//org.eclipse.jgit.gpg.bc:__pkg__", "//org.eclipse.jgit.test:__pkg__", ], |