blob: 877cfe0f82754f0e04242c95ce6d48e8922ab4db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
target "dependencies"
maven bouncycastle
scope = compile
dependencyDepth = none
missingManifest = error
includeSources
{
dependency {
groupId = "org.bouncycastle"
artifactId = "bcpg-jdk18on"
version = "1.73"
}
dependency {
groupId = "org.bouncycastle"
artifactId = "bcprov-jdk18on"
version = "1.73"
}
dependency {
groupId = "org.bouncycastle"
artifactId = "bcpkix-jdk18on"
version = "1.73"
}
dependency {
groupId = "org.bouncycastle"
artifactId = "bcutil-jdk18on"
version = "1.73"
}
}
|