blob: 5829d8c6414fe6839149962f77728dcf5512046f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id("java-library")
}
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk18on
api("org.bouncycastle:bcprov-jdk18on:1.77")
// https://mvnrepository.com/artifact/commons-cli/commons-cli
// 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:2.2")
// https://mvnrepository.com/artifact/com.klinec/jcardsim
api("com.klinec:jcardsim:3.0.5.11")
}
|