-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (39 loc) · 926 Bytes
/
build.gradle
File metadata and controls
47 lines (39 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
apply plugin: 'javacard'
buildscript {
repositories {
maven { url 'http://releases.marmeladburk.fidesmo.com/' }
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.fidesmo:gradle-javacard:0.2.7'
}
}
javacard {
sdkVersion = "3.0.4"
cap {
aid = '0x53:0x65:0x65:0x64:0x4b:0x65:0x65:0x70:0x65:0x72'
packageName = 'org.seedkeeper.applet'
applet {
aid = '0x53:0x65:0x65:0x64:0x4b:0x65:0x65:0x70:0x65:0x72:0x00'
className = 'SeedKeeper'
}
applet {
aid = '0x53:0x65:0x65:0x64:0x4b:0x65:0x65:0x70:0x65:0x72:0x01'
className = 'NDEFApplet'
}
version = '0.2'
}
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
}
task install (type: org.seedkeeper.build.InstallTask)
tasks.install.dependsOn(convertJavacard)
compileJava {
sourceCompatibility = 1.6
targetCompatibility = 1.6
}