Skip to content
Martin Paljak edited this page Sep 28, 2024 · 11 revisions

Building GlobalPlatformPro from source

Building GlobalPlatformPro from the source is simple and straightforward. JDK 11 LTS (or newer) is required.

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

Maven dependency

Note

Maven Central publishing is discontinued.

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

<repositories>
    <repository>
        <id>javacard-pro</id>
        <url>https://mvn.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>