forked from github-af/SmartPGP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (33 loc) · 798 Bytes
/
build.gradle
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
apply plugin: 'javacard'
buildscript {
repositories {
maven { url 'http://releases.marmeladburk.fidesmo.com/' }
}
dependencies {
classpath 'com.fidesmo:gradle-javacard:0.2.7'
}
}
project.compileJava {
sourceCompatibility = '1.6'
targetCompatibility = '1.6'
}
javacard {
sdkVersion = '3.0.4'
cap {
aid = '0xd2:0x76:0x00:0x01:0x24:0x01'
packageName = 'fr.anssi.smartpgp'
applet {
aid = '0xd2:0x76:0x00:0x01:0x24:0x01:0x03:0x03:0xAF:0xAF:0x00:0x00:0x00:0x00:0x00:0x00'
className = 'SmartPGPApplet'
}
version = '1.0'
}
}
/* Change source sets to be compatible with the original project layout. */
sourceSets {
main {
java {
srcDir 'src'
}
}
}