-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
19 lines (17 loc) · 864 Bytes
/
Copy pathbuild.xml
File metadata and controls
19 lines (17 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<project name="Sample" default="dist" basedir=".">
<get src="https://github.com/martinpaljak/ant-javacard/releases/latest/download/ant-javacard.jar" dest="." skipexisting="true"/>
<taskdef name="javacard" classname="pro.javacard.ant.JavaCard" classpath="ant-javacard.jar"/>
<description>Build the project</description>
<target name="dist" description="generate the distribution">
<tstamp/>
<javacard jckit="sdks/jc310r20210706_kit">
<cap targetsdk="3.0.4" aid="f0:12:34:56:78" output="Sample.cap" sources="src" version="1.0">
<applet class="org.suut.javacard.sample.Sample" aid="f0:12:34:56:78:01"/>
</cap>
</javacard>
</target>
<target name="clean" description="clean up">
<delete file="Sample.cap"/>
</target>
</project>