Download java-jwt-0.2.jar file

Introduction

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

License

The MIT License

Type List

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

META-INF/MANIFEST.MF
META-INF/maven/com.auth0/java-jwt/pom.properties
META-INF/maven/com.auth0/java-jwt/pom.xml
com.auth0.jwt.JWTVerifier.class

Pom

java-jwt-0.2.pom file content.

<?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>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
    </parent>

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

    <name>Java JWT</name>
    <description>Java implementation of JSON Web Token developed against draft-ietf-oauth-json-web-token-08.</description>
    <url>http://www.jwt.io</url>

    <properties>
        <java.version>1.6</java.version>
    </properties>

    <licenses>
        <license>
            <name>The MIT License</name>
            <url>http://www.opensource.org/licenses/mit-license.php</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Alberto Pose</name>
            <id>pose</id>
            <roles>
                <role>Developer</role>
            </roles>
        </developer>
    </developers>

    <scm>
        <url>https://github.com/auth0/java-jwt</url>
        <developerConnection>scm:git:git@github.com:auth0/java-jwt.git</developerConnection>
        <connection>scm:git:git@github.com:auth0/java-jwt.git</connection>
    </scm>

    <dependencies>
        <!-- For JWT parsing-->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.0.0</version>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.4</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

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

Download

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



Download java-jwt-0.2.jar file




PreviousNext

Related