Since we're a BUCK shop, convert the SSH key converter accordingly. This requires we mark Bouncy Castle as unsign, even though we do not include this in our normal Gerrit builds. Also, we had to add slf4j-nop, since this app doesn't require logging. Change-Id: I85031192f9172a90512d5f28cf1621c10ad6ebf4
31 lines
819 B
Python
31 lines
819 B
Python
include_defs('//lib/maven.defs')
|
|
|
|
# This version must match the version that also appears in
|
|
# gerrit-pgm/src/main/resources/com/google/gerrit/pgm/libraries.config
|
|
VERSION = '1.52'
|
|
|
|
maven_jar(
|
|
name = 'bcprov',
|
|
id = 'org.bouncycastle:bcprov-jdk15on:' + VERSION,
|
|
sha1 = '88a941faf9819d371e3174b5ed56a3f3f7d73269',
|
|
unsign = True,
|
|
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'bcpg',
|
|
id = 'org.bouncycastle:bcpg-jdk15on:' + VERSION,
|
|
sha1 = 'ff4665a4b5633ff6894209d5dd10b7e612291858',
|
|
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
|
|
deps = [':bcprov'],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'bcpkix',
|
|
id = 'org.bouncycastle:bcpkix-jdk15on:' + VERSION,
|
|
sha1 = 'b8ffac2bbc6626f86909589c8cc63637cc936504',
|
|
unsign = True,
|
|
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
|
|
deps = [':bcprov'],
|
|
)
|