Download jsontoken-1.1.jar file

Introduction

You can download jsontoken-1.1.jar in this page.

License

The Apache Software License, Version 2.0

Type List

jsontoken-1.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.googlecode.jsontoken/jsontoken/pom.properties
META-INF/maven/com.googlecode.jsontoken/jsontoken/pom.xml
net.oauth.jsontoken.Checker.class
net.oauth.jsontoken.Clock.class
net.oauth.jsontoken.JsonToken.class
net.oauth.jsontoken.JsonTokenParser.class
net.oauth.jsontoken.JsonTokenUtil.class
net.oauth.jsontoken.SystemClock.class
net.oauth.jsontoken.crypto.AbstractSigner.class
net.oauth.jsontoken.crypto.AsciiStringSigner.class
net.oauth.jsontoken.crypto.AsciiStringVerifier.class
net.oauth.jsontoken.crypto.HmacSHA256Signer.class
net.oauth.jsontoken.crypto.HmacSHA256Verifier.class
net.oauth.jsontoken.crypto.MagicRsaPublicKey.class
net.oauth.jsontoken.crypto.RsaSHA1Verifier.class
net.oauth.jsontoken.crypto.RsaSHA256Signer.class
net.oauth.jsontoken.crypto.RsaSHA256Verifier.class
net.oauth.jsontoken.crypto.SignatureAlgorithm.class
net.oauth.jsontoken.crypto.Signer.class
net.oauth.jsontoken.crypto.Verifier.class
net.oauth.jsontoken.discovery.DefaultPublicKeyLocator.class
net.oauth.jsontoken.discovery.IdentityServerDescriptorProvider.class
net.oauth.jsontoken.discovery.JsonServerInfo.class
net.oauth.jsontoken.discovery.ServerDescriptorProvider.class
net.oauth.jsontoken.discovery.ServerInfo.class
net.oauth.jsontoken.discovery.ServerInfoResolver.class
net.oauth.jsontoken.discovery.UrlBasedVerifierProvider.class
net.oauth.jsontoken.discovery.VerifierProvider.class
net.oauth.jsontoken.discovery.VerifierProviders.class
net.oauth.signatures.NonceChecker.class
net.oauth.signatures.SignedJsonAssertionAudienceChecker.class
net.oauth.signatures.SignedJsonAssertionToken.class
net.oauth.signatures.SignedJsonAssertionTokenParser.class
net.oauth.signatures.SignedOAuthToken.class
net.oauth.signatures.SignedOAuthTokenParser.class
net.oauth.signatures.SignedTokenAudienceChecker.class

Pom

jsontoken-1.1.pom file content.

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.googlecode.jsontoken</groupId>
  <artifactId>jsontoken</artifactId>
  <version>1.1</version>
  <packaging>jar</packaging>
  <name>jsontoken</name>
  <description>JWT implementation</description>
  <url>http://code.google.com/p/jsontoken/</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <scm>
    <connection>scm:svn:http://jsontoken.googlecode.com/svn/tags/jsontoken-1.1</connection>
    <developerConnection>scm:svn:https://jsontoken.googlecode.com/svn/tags/jsontoken-1.1</developerConnection>
    <url>http://jsontoken.googlecode.com/svn/tags/jsontoken-1.1</url>
  </scm>

  <developers>
    <developer>
      <id>jcai</id>
      <name>Jian Cai</name>
      <email>sonicgg@gmail.com</email>
    </developer>
  </developers>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <build>
  	<plugins>
  		<plugin>
  			<groupId>org.apache.maven.plugins</groupId>
  			<artifactId>maven-compiler-plugin</artifactId>
  			<version>2.3.1</version>
  			<configuration>
  			  <source>1.6</source>
  			  <target>1.6</target>
  			</configuration>
  		</plugin>
                <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>2.2.1</version>
                        <executions>
                          <execution>
                            <id>attach-sources</id>
                            <goals>
                              <goal>jar</goal>
                            </goals>
                          </execution>
                        </executions>
                </plugin>
  	</plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
    	<groupId>com.google.code.gson</groupId>
    	<artifactId>gson</artifactId>
    	<version>1.4</version>
    	<type>jar</type>
    	<scope>compile</scope>
    </dependency>
    <dependency>
    	<groupId>commons-codec</groupId>
    	<artifactId>commons-codec</artifactId>
    	<version>1.4</version>
    	<type>jar</type>
    	<scope>compile</scope>
    </dependency>
    <dependency>
    	<groupId>com.google.collections</groupId>
    	<artifactId>google-collections</artifactId>
    	<version>1.0</version>
    	<type>jar</type>
    	<scope>compile</scope>
    </dependency>
    <dependency>
    	<groupId>joda-time</groupId>
    	<artifactId>joda-time</artifactId>
    	<version>1.6</version>
    	<type>jar</type>
    	<scope>compile</scope>
    </dependency>
    <dependency>
    	<groupId>javax.servlet</groupId>
    	<artifactId>servlet-api</artifactId>
    	<version>2.5</version>
    	<type>jar</type>
    	<scope>compile</scope>
    </dependency>
    <dependency>
    	<groupId>org.apache.httpcomponents</groupId>
    	<artifactId>httpcore</artifactId>
    	<version>4.0.1</version>
    	<type>jar</type>
    	<scope>compile</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.googlecode.jsontoken</groupId>
   <artifactId>jsontoken</artifactId>
   <version>1.1</version>
</dependency>

Download

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



Download jsontoken-1.1.jar file




PreviousNext

Related