diff options
| author | Ján Jančár | 2024-03-28 15:45:21 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-28 15:45:21 +0100 |
| commit | fb8ce97e06363637ccf0846c012e5e3c6bfa6f44 (patch) | |
| tree | c7582af73c6951de54725e1f8b8e32744dde3682 /applet | |
| parent | 6945707a9b34acb275506bd89010b3d3e92c16c8 (diff) | |
| parent | 8e388999ceec941a8f26d3ee6ee7ece91c10ee0e (diff) | |
| download | ECTester-fb8ce97e06363637ccf0846c012e5e3c6bfa6f44.tar.gz ECTester-fb8ce97e06363637ccf0846c012e5e3c6bfa6f44.tar.zst ECTester-fb8ce97e06363637ccf0846c012e5e3c6bfa6f44.zip | |
Merge pull request #22 from crocs-muni/fix/libressl-build
Try to fix LibreSSL build.
Diffstat (limited to 'applet')
| -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 { |
