<dependency>
<groupId>com.yubico</groupId>
<artifactId>yubico-j</artifactId>
<version>1.3</version>
</dependency>
This package make up the low-level Java software development kit for the Yubico authentication device, the YubiKey. In particular:
COPYING
: software license.
pom.xml
: build files for mvn.
src/
: source code of YubiKey package.
test/
: self-tests.
Add the following dependency to your POM file:
<dependency>
<groupId>com.yubico</groupId>
<artifactId>yubico-j</artifactId>
<version>1.3</version>
</dependency>
Build the package by invoking:
mvn package
The output Java library will be stored in target/yubico-j-$version.jar
.
Run the self-tests to make sure it is working properly:
mvn test