forked from vletoux/GidsApplet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
20 lines (19 loc) · 901 Bytes
/
build.xml
File metadata and controls
20 lines (19 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<project name="Gids Applet" default="dist" basedir=".">
<description>Builds the project. </description>
<get src="https://github.com/martinpaljak/ant-javacard/releases/download/18.06.25/ant-javacard.jar" dest="." skipexisting="true"/>
<taskdef name="javacard" classname="pro.javacard.ant.JavaCard" classpath="ant-javacard.jar"/>
<target name="dist" description="generate the distribution">
<tstamp/>
<!-- Create the distribution directory -->
<javacard>
<cap aid="A0:00:00:03:97:42:54:46:59" output="VKGIDS.cap" sources="src/com/vivokey/VKGIDS" version="1.0">
<applet class="com.vivokey.VKGIDS.GidsApplet" aid="A0:00:00:03:97:42:54:46:59:02:01"/>
</cap>
</javacard>
</target>
<target name="clean" description="clean up">
<!-- Delete the built applet -->
<delete dir="VKGIDS.cap"/>
</target>
</project>