globalplatformpro
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.martinpaljak</groupId> <artifactId>globalplatformpro</artifactId> <version>19.06.16</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.martinpaljak</groupId> <artifactId>gppro</artifactId> <version>19.06.16</version> </parent> <artifactId>globalplatformpro</artifactId> <name>GlobalPlatformPro library</name> <dependencies> <!-- For APDU construction and parsing --> <dependency> <groupId>com.github.martinpaljak</groupId> <artifactId>apdu4j-core</artifactId> <version>19.05.08</version> </dependency> <!-- For CAP file parsing --> <dependency> <groupId>com.github.martinpaljak</groupId> <artifactId>capfile</artifactId> <version>19.03.04</version> </dependency> <!-- For logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> </dependency> <!-- For JSON handling --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.4</version> </dependency> <!-- For crypto in SCP03 --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.62</version> </dependency> <!-- For TLV handling --> <dependency> <groupId>com.payneteasy</groupId> <artifactId>ber-tlv</artifactId> <version>1.0-9</version> </dependency> <!-- For tests --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> <scope>test</scope> </dependency> </dependencies> </project>