Skip to content
Martin Paljak edited this page May 8, 2023 · 8 revisions

Building GlobalPlatformPro from source

Building GlobalPlatformPro from the source is simple and straightforward. JDK 11 LTS is required.

git clone https://github.com/martinpaljak/globalplatformpro
cd globalplatformpro
./mvnw verify
# use ./tool/target/gp.jar

Maven dependency

Releases are published to https://javacard.pro/maven/. To use it, add the repository to your pom.xml:

<repositories>
    <repository>
        <id>javacard-pro</id>
        <url>https://javacard.pro/maven/</url>
    </repository>
</repositories>

Then add the dependency (check the version from release area):

<dependency>
    <groupId>com.github.martinpaljak</groupId>
    <artifactId>globalplatformpro</artifactId>
    <version>20.01.23</version>
</dependency>

Occasionally some versions MAY be pushed to Maven Central.