Download jjwt-0.2.jar file

Introduction

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

License

Apache License, Version 2.0

Type List

jjwt-0.2.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.Claims.class
io.jsonwebtoken.ClaimsMutator.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.SignatureAlgorithm.class
io.jsonwebtoken.SignatureException.class
io.jsonwebtoken.UnsupportedJwtException.class
io.jsonwebtoken.impl.AbstractTextCodec.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.JwtMap.class
io.jsonwebtoken.impl.TextCodec.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.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.2.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.2</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.2</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.1</easymock.version>
        <testng.version>6.8</testng.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>org.slf4j</groupId>
            <artifactId>jcl-over-slf4j</artifactId>
            <version>${slf4j.version}</version>
            <scope>runtime</scope>
        </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>runtime</scope> <!-- Not required at compile time -->
            <optional>true</optional>
        </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.testng</groupId>
            <artifactId>testng</artifactId>
            <version>${testng.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>

    </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>
                    </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.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>
        </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.2</version>
</dependency>

Download

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



Download jjwt-0.2.jar file




PreviousNext

Related