You can download spring-security-jwt-1.0.2.release.jar in this page.
Apache 2.0
spring-security-jwt-1.0.2.release.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.springframework.security/spring-security-jwt/pom.properties META-INF/maven/org.springframework.security/spring-security-jwt/pom.xml org.springframework.security.jwt.AlgorithmMetadata.class org.springframework.security.jwt.BinaryFormat.class org.springframework.security.jwt.HeaderParameters.class org.springframework.security.jwt.Jwt.class org.springframework.security.jwt.JwtAlgorithms.class org.springframework.security.jwt.JwtHeader.class org.springframework.security.jwt.JwtHeaderHelper.class org.springframework.security.jwt.JwtHelper.class org.springframework.security.jwt.JwtImpl.class org.springframework.security.jwt.codec.Base64.class org.springframework.security.jwt.codec.Base64Codec.class org.springframework.security.jwt.codec.Codecs.class org.springframework.security.jwt.codec.Hex.class org.springframework.security.jwt.codec.InvalidBase64CharacterException.class org.springframework.security.jwt.crypto.cipher.CipherMetadata.class org.springframework.security.jwt.crypto.sign.InvalidSignatureException.class org.springframework.security.jwt.crypto.sign.MacSigner.class org.springframework.security.jwt.crypto.sign.RsaKeyHelper.class org.springframework.security.jwt.crypto.sign.RsaSigner.class org.springframework.security.jwt.crypto.sign.RsaVerifier.class org.springframework.security.jwt.crypto.sign.SignatureVerifier.class org.springframework.security.jwt.crypto.sign.Signer.class org.springframework.security.jwt.crypto.sign.SignerVerifier.class
spring-security-jwt-1.0.2.release.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>org.springframework.security</groupId> <artifactId>spring-security-jwt</artifactId> <version>1.0.2.RELEASE</version> <packaging>jar</packaging> <name>Spring Security JWT Library</name> <description>Spring Security JWT is a small utility library for encoding and decoding JSON Web Tokens. It belongs to the family of Spring Security crypto libraries that handle encoding and decoding text as a general, useful thing to be able to do.</description> <url>http://github.com/spring-projects/spring-security-oauth</url> <organization> <name>SpringSource</name> <url>http://www.springsource.com</url> </organization> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <dependencies> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.13</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.47</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <!-- For testing compatibility with Ruby JWT gem --> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby</artifactId> <version>1.7.8</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>${skipTests}</skip> <includes> <include>**/*Tests.java</include> </includes> <!-- <systemPropertyVariables> <jruby.home>${jruby.home}</jruby.home> </systemPropertyVariables> --> </configuration> </plugin> </plugins> </pluginManagement> <extensions> <extension> <groupId>org.springframework.build</groupId> <artifactId>aws-maven</artifactId> <version>5.0.0.RELEASE</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</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.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>javadoc</id> <goals> <goal>jar</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <site> <id>static.springframework.org</id> <url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-security/oauth</url> </site> <repository> <id>springframework-release</id> <name>Spring Release Repository</name> <url>s3://maven.springframework.org/release</url> </repository> <snapshotRepository> <id>springframework-snapshot</id> <name>Spring Snapshot Repository</name> <url>s3://maven.springframework.org/snapshot</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>central</id> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <scm> <url>http://github.com/spring-projects/spring-security-oauth</url> <connection>scm:git:git://github.com/spring-projects/spring-security-oauth.git</connection> <developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-security-oauth.git</developerConnection> </scm> <developers> <developer> <id>tekul</id> <name>Luke Taylor</name> <email>ltaylor@vmware.com</email> </developer> <developer> <id>dsyer</id> <name>Dave Syer</name> <email>dsyer@vmware.com</email> </developer> </developers> </project>
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-jwt</artifactId> <version>1.0.2.release</version> </dependency>
If you think the following spring-security-jwt-1.0.2.release.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download spring-security-jwt-1.0.2.release.jar file