Releases: martinpaljak/ant-javacard
Releases · martinpaljak/ant-javacard
Renamed to ant-javacard
And supports @Override
with JavaCard 3.x projects
Hello World!
- Download
ant-jcpro.jar
file and put it into the library folder of your project. - Then add the following to you
build.xml
file:
<taskdef name="jcpro" classname="pro.javacard.ant.JCPro" classpath="lib/ant-jcpro.jar"/>
- Now you can create applets within your Ant targets like this:
<jcpro>
<cap jckit="/path/to/jckit_dir" cap="0102030405" output="MyApplet.cap" sources="src/myapplet">
<applet class="myapplet.MyApplet" aid="0102030405060708"/>
</cap>
</jcpro>
Supports all recent JavaCard SDK versions:
- 2.2.1
- 2.2.2
- 3.0.3
- 3.0.4
Enjoy!