Revert "Exclude bouncycastle key files to fix SecurityException upon plugin-api"

During server startup the warning:

  Disabling cipher <name>: JCE cannot authenticate the provider BC

is emitted for each cipher [1],

and when using SSH, all git operations fail with the error:

  no matching cipher found [2].

This reverts commit 3420d83f39.

[1] http://paste.openstack.org/show/460590/
[2] http://paste.openstack.org/show/460591/

Change-Id: I8352d6074120f1c148a12d16a013da5965308d9e
This commit is contained in:
David Pursehouse
2015-09-14 10:52:38 +09:00
parent 26da0269ea
commit cc0f002edf

View File

@@ -9,7 +9,6 @@ maven_jar(
id = 'org.bouncycastle:bcprov-jdk15on:' + VERSION,
sha1 = '88a941faf9819d371e3174b5ed56a3f3f7d73269',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
exclude = ['META-INF/BCKEY.*'],
)
maven_jar(
@@ -17,7 +16,6 @@ maven_jar(
id = 'org.bouncycastle:bcpg-jdk15on:' + VERSION,
sha1 = 'ff4665a4b5633ff6894209d5dd10b7e612291858',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
exclude = ['META-INF/BCKEY.*'],
deps = [':bcprov'],
)