diff options
Diffstat (limited to 'common/build.gradle.kts')
| -rw-r--r-- | common/build.gradle.kts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/common/build.gradle.kts b/common/build.gradle.kts index a336f6b..5829d8c 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -13,10 +13,11 @@ repositories { dependencies { // https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk18on api("org.bouncycastle:bcprov-jdk18on:1.77") - // https://mvnrepository.com/artifact/com.klinec/jcardsim - api("com.klinec:jcardsim:3.0.5.11") // https://mvnrepository.com/artifact/commons-cli/commons-cli - api("commons-cli:commons-cli:1.6.0") + // We need 1.5.0, as for some reason 1.6.0 doesn't work (arguments don't ger parsed properly). + api("commons-cli:commons-cli:1.5.0") // https://mvnrepository.com/artifact/org.yaml/snakeyaml - api("org.yaml:snakeyaml:1.19") + api("org.yaml:snakeyaml:2.2") + // https://mvnrepository.com/artifact/com.klinec/jcardsim + api("com.klinec:jcardsim:3.0.5.11") }
\ No newline at end of file |
