Skip to content

Releases: martinpaljak/ant-javacard

Renamed to ant-javacard

10 Jan 10:20
Compare
Choose a tag to compare
Pre-release

And supports @Override with JavaCard 3.x projects

Hello World!

06 Jan 11:02
Compare
Choose a tag to compare
Hello World! Pre-release
Pre-release
  • 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!