Download java-jwt-3.1.0.jar file

Introduction

You can download java-jwt-3.1.0.jar in this page.

License

The MIT License

Type List

java-jwt-3.1.0.jar file has the following types.

META-INF/MANIFEST.MF
com.auth0.jwt.ClockImpl.class
com.auth0.jwt.JWT.class
com.auth0.jwt.JWTCreator.class
com.auth0.jwt.JWTDecoder.class
com.auth0.jwt.JWTVerifier.class
com.auth0.jwt.TokenUtils.class
com.auth0.jwt.algorithms.Algorithm.class
com.auth0.jwt.algorithms.CryptoHelper.class
com.auth0.jwt.algorithms.ECDSAAlgorithm.class
com.auth0.jwt.algorithms.HMACAlgorithm.class
com.auth0.jwt.algorithms.NoneAlgorithm.class
com.auth0.jwt.algorithms.RSAAlgorithm.class
com.auth0.jwt.exceptions.AlgorithmMismatchException.class
com.auth0.jwt.exceptions.InvalidClaimException.class
com.auth0.jwt.exceptions.JWTCreationException.class
com.auth0.jwt.exceptions.JWTDecodeException.class
com.auth0.jwt.exceptions.JWTVerificationException.class
com.auth0.jwt.exceptions.SignatureGenerationException.class
com.auth0.jwt.exceptions.SignatureVerificationException.class
com.auth0.jwt.impl.BasicHeader.class
com.auth0.jwt.impl.ClaimsHolder.class
com.auth0.jwt.impl.HeaderDeserializer.class
com.auth0.jwt.impl.JWTParser.class
com.auth0.jwt.impl.JsonNodeClaim.class
com.auth0.jwt.impl.NullClaim.class
com.auth0.jwt.impl.PayloadDeserializer.class
com.auth0.jwt.impl.PayloadImpl.class
com.auth0.jwt.impl.PayloadSerializer.class
com.auth0.jwt.impl.PublicClaims.class
com.auth0.jwt.interfaces.Claim.class
com.auth0.jwt.interfaces.Clock.class
com.auth0.jwt.interfaces.DecodedJWT.class
com.auth0.jwt.interfaces.Header.class
com.auth0.jwt.interfaces.JWTPartsParser.class
com.auth0.jwt.interfaces.Payload.class
com.auth0.jwt.interfaces.Signature.class
com.auth0.jwt.interfaces.Verification.class

Pom

java-jwt-3.1.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.auth0</groupId>
  <artifactId>java-jwt</artifactId>
  <version>3.1.0</version>
  <packaging>jar</packaging>
  <name>java jwt</name>
  <description>Java implementation of JSON Web Token (JWT)</description>
  <url>http://www.jwt.io</url>
  <developers>
    <developer>
      <id>auth0</id>
      <name>Auth0</name>
      <email>oss@auth0.com</email>
    </developer>
    <developer>
      <id>lbalmaceda</id>
      <name>Luciano Balmaceda</name>
      <email>luciano.balmaceda@auth0.com</email>
    </developer>
    <developer>
      <id>hzalaz</id>
      <name>Hernan Zalazar</name>
      <email>hernan@auth0.com</email>
    </developer>
  </developers>
  <dependencies>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.8.4</version>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.10</version>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcprov-jdk15on</artifactId>
      <version>1.55</version>
    </dependency>
  </dependencies>
  <licenses>
    <license>
      <name>The MIT License (MIT)</name>
      <url>https://raw.githubusercontent.com/auth0/java-jwt/master/LICENSE</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git@github.com:auth0/java-jwt.git</connection>
    <developerConnection>scm:git@github.com:auth0/java-jwt.git</developerConnection>
    <url>https://github.com/auth0/java-jwt</url>
  </scm>
</project>

POM Entry

<dependency>
   <groupId>com.auth0</groupId>
   <artifactId>java-jwt</artifactId>
   <version>3.1.0</version>
</dependency>

Download

If you think the following java-jwt-3.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download java-jwt-3.1.0.jar file




PreviousNext

Related