2017-09-21 12:09:04 +00:00
|
|
|
apply plugin: 'javacard'
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven { url 'http://releases.marmeladburk.fidesmo.com/' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.fidesmo:gradle-javacard:0.2.7'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
javacard {
|
2017-09-26 10:05:59 +00:00
|
|
|
sdkVersion = "2.2.2"
|
|
|
|
|
2017-09-21 12:09:04 +00:00
|
|
|
cap {
|
|
|
|
aid = '0x53:0x74:0x61:0x74:0x75:0x73:0x57:0x61:0x6c:0x6c:0x65:0x74'
|
|
|
|
packageName = 'im.status.wallet'
|
|
|
|
applet {
|
|
|
|
aid = '0x53:0x74:0x61:0x74:0x75:0x73:0x57:0x61:0x6c:0x6c:0x65:0x74:0x41:0x70:0x70'
|
|
|
|
className = 'WalletApplet'
|
|
|
|
}
|
|
|
|
version = '1.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-09-26 10:05:59 +00:00
|
|
|
testCompile("org.bouncycastle:bcprov-jdk15on:1.58")
|
2017-09-25 11:16:26 +00:00
|
|
|
testCompile("org.junit.jupiter:junit-jupiter-api:5.0.0")
|
|
|
|
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.0.0")
|
2017-09-21 12:09:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = 1.3
|
|
|
|
targetCompatibility = 1.3
|
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
|
|
gradleVersion = '2.10'
|
|
|
|
}
|
2017-09-25 11:16:26 +00:00
|
|
|
|
|
|
|
compileTestJava {
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
}
|