aboutsummaryrefslogtreecommitdiff
path: root/applet/build.gradle.kts
diff options
context:
space:
mode:
authorJ08nY2024-03-28 15:16:16 +0100
committerJ08nY2024-03-28 15:16:16 +0100
commit6456d96c094646b86c644c305b1addcbd335cdc0 (patch)
treee70564acb2044396794cde343b317e561c9b25a3 /applet/build.gradle.kts
parentb3d94dd54e9af330d62aeea8b36be3fff7756df1 (diff)
downloadECTester-6456d96c094646b86c644c305b1addcbd335cdc0.tar.gz
ECTester-6456d96c094646b86c644c305b1addcbd335cdc0.tar.zst
ECTester-6456d96c094646b86c644c305b1addcbd335cdc0.zip
Diffstat (limited to 'applet/build.gradle.kts')
-rw-r--r--applet/build.gradle.kts6
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 {