| 组织ID: |
com.auth0 |
| 项目ID: |
java-jwt |
| 版本: |
0.1 |
| 最后修改时间: |
2019-05-06 16:36:29 |
| 包类型: |
jar |
| 标题: |
Java JWT |
| 描述: |
Java implementation of JSON Web Token developed against draft-ietf-oauth-json-web-token-08. |
| 相关URL: |
http://www.jwt.io |
| 大小: |
4.91KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>0.1</version>
</dependency>
|
| Gradle引入代码: |
com.auth0:java-jwt:0.1
|
| 下载Jar包: |
|
| POM文件内容: |
<?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.1</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>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.auth0.jwt.JWTVerifier.class
META-INF/maven/com.auth0/java-jwt/pom.xml
META-INF/maven/com.auth0/java-jwt/pom.properties
|
| 依赖Jar: |
jackson-databind-2.0.0.jar
/com.fasterxml.jackson.core/jackson-databind/2.0.0
查看jackson-databind所有版本文件
commons-codec-1.4.jar
/commons-codec/commons-codec/1.4
查看commons-codec所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
|