Download jjwt-0.5.1.jar file

Introduction

You can download jjwt-0.5.1.jar in this page.

License

Apache License, Version 2.0

Type List

jjwt-0.5.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/io.jsonwebtoken/jjwt/pom.properties
META-INF/maven/io.jsonwebtoken/jjwt/pom.xml
io.jsonwebtoken.ClaimJwtException.class
io.jsonwebtoken.Claims.class
io.jsonwebtoken.ClaimsMutator.class
io.jsonwebtoken.ExpiredJwtException.class
io.jsonwebtoken.Header.class
io.jsonwebtoken.Jws.class
io.jsonwebtoken.JwsHeader.class
io.jsonwebtoken.Jwt.class
io.jsonwebtoken.JwtBuilder.class
io.jsonwebtoken.JwtException.class
io.jsonwebtoken.JwtHandler.class
io.jsonwebtoken.JwtHandlerAdapter.class
io.jsonwebtoken.JwtParser.class
io.jsonwebtoken.Jwts.class
io.jsonwebtoken.MalformedJwtException.class
io.jsonwebtoken.PrematureJwtException.class
io.jsonwebtoken.SignatureAlgorithm.class
io.jsonwebtoken.SignatureException.class
io.jsonwebtoken.SigningKeyResolver.class
io.jsonwebtoken.SigningKeyResolverAdapter.class
io.jsonwebtoken.UnsupportedJwtException.class
io.jsonwebtoken.impl.AbstractTextCodec.class
io.jsonwebtoken.impl.AndroidBase64Codec.class
io.jsonwebtoken.impl.Base64Codec.class
io.jsonwebtoken.impl.Base64UrlCodec.class
io.jsonwebtoken.impl.DefaultClaims.class
io.jsonwebtoken.impl.DefaultHeader.class
io.jsonwebtoken.impl.DefaultJws.class
io.jsonwebtoken.impl.DefaultJwsHeader.class
io.jsonwebtoken.impl.DefaultJwt.class
io.jsonwebtoken.impl.DefaultJwtBuilder.class
io.jsonwebtoken.impl.DefaultJwtParser.class
io.jsonwebtoken.impl.DefaultTextCodecFactory.class
io.jsonwebtoken.impl.JwtMap.class
io.jsonwebtoken.impl.TextCodec.class
io.jsonwebtoken.impl.TextCodecFactory.class
io.jsonwebtoken.impl.crypto.DefaultJwtSignatureValidator.class
io.jsonwebtoken.impl.crypto.DefaultJwtSigner.class
io.jsonwebtoken.impl.crypto.DefaultSignatureValidatorFactory.class
io.jsonwebtoken.impl.crypto.DefaultSignerFactory.class
io.jsonwebtoken.impl.crypto.EllipticCurveProvider.class
io.jsonwebtoken.impl.crypto.EllipticCurveSignatureValidator.class
io.jsonwebtoken.impl.crypto.EllipticCurveSigner.class
io.jsonwebtoken.impl.crypto.JwtSignatureValidator.class
io.jsonwebtoken.impl.crypto.JwtSigner.class
io.jsonwebtoken.impl.crypto.MacProvider.class
io.jsonwebtoken.impl.crypto.MacSigner.class
io.jsonwebtoken.impl.crypto.MacValidator.class
io.jsonwebtoken.impl.crypto.RsaProvider.class
io.jsonwebtoken.impl.crypto.RsaSignatureValidator.class
io.jsonwebtoken.impl.crypto.RsaSigner.class
io.jsonwebtoken.impl.crypto.SignatureProvider.class
io.jsonwebtoken.impl.crypto.SignatureValidator.class
io.jsonwebtoken.impl.crypto.SignatureValidatorFactory.class
io.jsonwebtoken.impl.crypto.Signer.class
io.jsonwebtoken.impl.crypto.SignerFactory.class
io.jsonwebtoken.lang.Assert.class
io.jsonwebtoken.lang.Classes.class
io.jsonwebtoken.lang.Collections.class
io.jsonwebtoken.lang.InstantiationException.class
io.jsonwebtoken.lang.Objects.class
io.jsonwebtoken.lang.RuntimeEnvironment.class
io.jsonwebtoken.lang.Strings.class
io.jsonwebtoken.lang.UnknownClassException.class

Pom

jjwt-0.5.1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (C) 2014 jsonwebtoken.io
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->
<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>7</version>
    </parent>

    <groupId>io.jsonwebtoken</groupId>
    <artifactId>jjwt</artifactId>
    <version>0.5.1</version>
    <name>JSON Web Token support for the JVM</name>
    <packaging>jar</packaging>

    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:https://github.com/jwtk/jjwt.git</connection>
        <developerConnection>scm:git:git@github.com:jwtk/jjwt.git</developerConnection>
        <url>git@github.com:jwtk/jjwt.git</url>
        <tag>0.5.1</tag>
    </scm>
    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/jwtk/jjwt/issues</url>
    </issueManagement>
    <ciManagement>
        <system>TravisCI</system>
        <url>https://travis-ci.org/jwtk/jjwt</url>
    </ciManagement>

    <properties>

        <maven.jar.version>2.4</maven.jar.version>
        <maven.compiler.version>3.1</maven.compiler.version>

        <jdk.version>1.6</jdk.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>

        <slf4j.version>1.7.6</slf4j.version>
        <jackson.version>2.4.2</jackson.version>

        <!-- Optional Runtime Dependencies: -->
        <bouncycastle.version>1.51</bouncycastle.version>

        <!-- Test Dependencies: Only required for testing when building.  Not required by users at runtime: -->
        <groovy.version>2.3.0-beta-2</groovy.version>
        <logback.version>1.0.7</logback.version>
        <easymock.version>3.3.1</easymock.version>
        <junit.version>4.12</junit.version>
        <powermock.version>1.6.2</powermock.version>
        <failsafe.plugin.version>2.12.4</failsafe.plugin.version>

    </properties>

    <dependencies>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>${slf4j.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${jackson.version}</version>
        </dependency>

        <!-- Optional Dependencies: -->
        <dependency>
            <groupId>org.bouncycastle</groupId>
            <artifactId>bcprov-jdk15on</artifactId>
            <version>${bouncycastle.version}</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>

        <!-- Provided scope: only used in Android environments - not downloaded as a transitive dependency.
             This dependency is only a stub of the actual implementation, which means we can't use it at test time.
             An Android environment is required to test for real. -->
        <dependency>
            <groupId>com.google.android</groupId>
            <artifactId>android</artifactId>
            <version>4.1.1.4</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <!-- Test Dependencies: Only required for testing when building.  Not required by users at runtime: -->
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>${logback.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy-all</artifactId>
            <version>${groovy.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>${easymock.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-easymock</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-core</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-enforcer-plugin</artifactId>
                <version>1.3.1</version>
                <executions>
                    <execution>
                        <id>enforce-banned-dependencies</id>
                        <goals>
                            <goal>enforce</goal>
                        </goals>
                        <configuration>
                            <rules>
                                <bannedDependencies>
                                    <searchTransitive>true</searchTransitive>
                                    <excludes>
                                        <exclude>commons-logging</exclude>
                                    </excludes>
                                </bannedDependencies>
                            </rules>
                            <fail>true</fail>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven.compiler.version}</version>
                <configuration>
                    <source>${jdk.version}</source>
                    <target>${jdk.version}</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>${maven.jar.version}</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                        </manifest>
                        <manifestFile>
                            ${project.build.outputDirectory}/META-INF/MANIFEST.MF
                        </manifestFile>
                    </archive>
                </configuration>
            </plugin>
            <!-- Allow for writing tests in Groovy: -->
            <plugin>
                <groupId>org.codehaus.gmaven</groupId>
                <artifactId>gmaven-plugin</artifactId>
                <version>1.5</version>
                <configuration>
                    <providerSelection>2.0</providerSelection>
                    <source />
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>generateStubs</goal>
                            <goal>compile</goal>
                            <goal>generateTestStubs</goal>
                            <goal>testCompile</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.codehaus.gmaven.runtime</groupId>
                        <artifactId>gmaven-runtime-2.0</artifactId>
                        <version>1.5</version>
                        <exclusions>
                            <exclusion>
                                <groupId>org.codehaus.groovy</groupId>
                                <artifactId>groovy-all</artifactId>
                            </exclusion>
                        </exclusions>
                    </dependency>
                    <dependency>
                        <groupId>org.codehaus.groovy</groupId>
                        <artifactId>groovy-all</artifactId>
                        <version>${groovy.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.17</version>
                <configuration>
                    <includes>
                        <include>**/*IT.java</include>
                        <include>**/*IT.groovy</include>
                        <include>**/*ITCase.java</include>
                        <include>**/*ITCase.groovy</include>
                    </includes>
                    <excludes>
                        <exclude>**/*ManualIT.java</exclude>
                        <exclude>**/*ManualIT.groovy</exclude>
                    </excludes>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.7</version>
                <configuration>
                    <instrumentation>
                        <excludes>
                            <exclude>io/jsonwebtoken/lang/*.class</exclude>
                        </excludes>
                        <ignores>
                            <ignore>io.jsonwebtoken.lang.*</ignore>
                        </ignores>
                    </instrumentation>
                    <check>
                        <lineRate>100</lineRate>
                        <branchRate>100</branchRate>
                        <packageLineRate>100</packageLineRate>
                        <packageBranchRate>100</packageBranchRate>
                        <haltOnFailure>true</haltOnFailure>
                        <regexes>
                            <regex>
                                <!-- Cannot get to 100% on DefaultClaims because of Cobertura bug w/ generics:
                                     https://github.com/cobertura/cobertura/issues/207 -->
                                <pattern>io.jsonwebtoken.impl.DefaultClaims</pattern>
                                <lineRate>96</lineRate>
                                <branchRate>100</branchRate>
                            </regex>
                            <regex>
                                <pattern>io.jsonwebtoken.impl.Base64UrlCodec</pattern>
                                <lineRate>100</lineRate>
                                <branchRate>95</branchRate>
                            </regex>
                            <regex>
                                <pattern>io.jsonwebtoken.impl.DefaultJwtBuilder</pattern>
                                <lineRate>91</lineRate>
                                <branchRate>85</branchRate>
                            </regex>
                            <regex>
                                <pattern>io.jsonwebtoken.impl.DefaultJwtParser</pattern>
                                <lineRate>97</lineRate>
                                <branchRate>88</branchRate>
                            </regex>
                            <regex>
                                <pattern>io.jsonwebtoken.impl.crypto.EllipticCurveSignatureValidator</pattern>
                                <lineRate>95</lineRate>
                                <branchRate>100</branchRate>
                            </regex>
                            <regex>
                                <pattern>io.jsonwebtoken.impl.crypto.RsaSignatureValidator</pattern>
                                <lineRate>93</lineRate>
                                <branchRate>100</branchRate>
                            </regex>
                        </regexes>
                    </check>
                    <formats>
                        <format>html</format>
                    </formats>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>clean</goal>
                            <goal>check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5</version>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.maven.scm</groupId>
                        <artifactId>maven-scm-provider-gitexe</artifactId>
                        <version>1.9</version>
                    </dependency>
                </dependencies>
                <configuration>
                    <mavenExecutorId>forked-path</mavenExecutorId>
                    <useReleaseProfile>false</useReleaseProfile>
                    <arguments>-Psonatype-oss-release -Pdocs -Psign</arguments>
                    <autoVersionSubmodules>true</autoVersionSubmodules>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.3.5</version>
                <extensions>true</extensions>
                <executions>
                    <execution>
                        <id>bundle-manifest</id>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>manifest</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>jdk8</id>
            <activation>
                <jdk>1.8</jdk>
            </activation>
            <properties>
                <!-- Turn off JDK 8's lint checks: -->
                <additionalparam>-Xdoclint:none</additionalparam>
            </properties>
        </profile>
        <profile>
            <id>sign</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.5</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <profile>
            <id>docs</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>2.3</version>
                        <executions>
                            <execution>
                                <id>attach-sources</id>
                                <goals>
                                    <goal>jar-no-fork</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>2.9.1</version>
                        <executions>
                            <execution>
                                <id>attach-javadocs</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>

POM Entry

<dependency>
   <groupId>io.jsonwebtoken</groupId>
   <artifactId>jjwt</artifactId>
   <version>0.5.1</version>
</dependency>

Download

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



Download jjwt-0.5.1.jar file




PreviousNext

Related