mirror of
https://github.com/status-im/status-keycard.git
synced 2025-01-12 06:44:34 +00:00
48 lines
933 B
Groovy
48 lines
933 B
Groovy
apply plugin: 'javacard'
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven { url 'http://releases.marmeladburk.fidesmo.com/' }
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.fidesmo:gradle-javacard:0.2.7'
|
|
}
|
|
}
|
|
|
|
javacard {
|
|
sdkVersion = "2.2.2"
|
|
|
|
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 {
|
|
testCompile("org.bouncycastle:bcprov-jdk15on:1.58")
|
|
testCompile("org.junit.jupiter:junit-jupiter-api:5.0.0")
|
|
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.0.0")
|
|
}
|
|
|
|
sourceCompatibility = 1.3
|
|
targetCompatibility = 1.3
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.10'
|
|
}
|
|
|
|
compileTestJava {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|