apdu4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.martinpaljak</groupId>
<artifactId>apdu4j</artifactId>
<version>21.05.06</version>
</dependency><?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.martinpaljak</groupId>
<artifactId>metacard</artifactId>
<version>21.04.02</version>
</parent>
<artifactId>apdu4j</artifactId>
<version>21.05.06</version>
<packaging>pom</packaging>
<name>apdu4j</name>
<url>https://github.com/martinpaljak/apdu4j</url>
<description>Working with smart card readers? This is for you.</description>
<scm>
<url>https://github.com/martinpaljak/apdu4j</url>
<developerConnection>scm:git:git@github.com:martinpaljak/apdu4j.git</developerConnection>
</scm>
<repositories>
<!-- For picking up latest metacard -->
<repository>
<id>javacard-pro</id>
<name>javacard.pro</name>
<url>https://javacard.pro/maven/</url>
</repository>
</repositories>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/martinpaljak/apdu4j/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
<license>
<name>GPL</name>
<url>https://github.com/martinpaljak/apdu4j/blob/master/core/src/main/java/apdu4j/CommandAPDU.java</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>core</module>
<module>pcsc</module>
<module>tool</module>
</modules>
<dependencies>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.30</version>
<scope>test</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.4.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<configuration>
<excludeFilterFile>spotbugs.xml</excludeFilterFile>
</configuration>
</plugin>
<!-- Reproducible -->
<plugin>
<groupId>io.github.zlika</groupId>
<artifactId>reproducible-build-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>