diff options
| author | J08nY | 2024-03-28 15:16:16 +0100 |
|---|---|---|
| committer | J08nY | 2024-03-28 15:16:16 +0100 |
| commit | 6456d96c094646b86c644c305b1addcbd335cdc0 (patch) | |
| tree | e70564acb2044396794cde343b317e561c9b25a3 /applet/build.gradle.kts | |
| parent | b3d94dd54e9af330d62aeea8b36be3fff7756df1 (diff) | |
| download | ECTester-6456d96c094646b86c644c305b1addcbd335cdc0.tar.gz ECTester-6456d96c094646b86c644c305b1addcbd335cdc0.tar.zst ECTester-6456d96c094646b86c644c305b1addcbd335cdc0.zip | |
Diffstat (limited to 'applet/build.gradle.kts')
| -rw-r--r-- | applet/build.gradle.kts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/applet/build.gradle.kts b/applet/build.gradle.kts index d5ef7f4..61071c2 100644 --- a/applet/build.gradle.kts +++ b/applet/build.gradle.kts @@ -48,7 +48,11 @@ dependencies { // Include plugin as it has bundled GP & other tools. // Alternative: include GP manually, but the included // version has to be compatible with the plugin. - runtimeOnly("com.klinec:gradle-javacard:1.8.0") + runtimeOnly("com.klinec:gradle-javacard:1.8.0") { + // Exclude old BouncyCastle (we have newer). + exclude(group = "org.bouncycastle", module="bcpkix-jdk15on") + } + runtimeOnly("org.bouncycastle:bcpkix-jdk18on:1.77") } java { |
