nimbus-jose-jwt
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> <version>10.0.2</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> <name>Nimbus JOSE+JWT</name> <version>10.0.2</version> <description>Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)</description> <url>https://bitbucket.org/connect2id/nimbus-jose-jwt</url> <developers> <developer> <id>vdzhuvinov</id> <name>Vladimir Dzhuvinov</name> <email>vladimir@dzhuvinov.com</email> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://bitbucket.org/connect2id/nimbus-jose-jwt.git</connection> <developerConnection>scm:git:git@bitbucket.org:connect2id/nimbus-jose-jwt.git</developerConnection> <tag>10.0.2</tag> <url>https://bitbucket.org/connect2id/nimbus-jose-jwt</url> </scm> <organization> <name>Connect2id Ltd.</name> <url>https://connect2id.com</url> </organization> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>1.7</source> <target>1.7</target> <fork>true</fork> <compilerArgument>-Xlint</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <shadedArtifactAttached>false</shadedArtifactAttached> <artifactSet> <includes> <include>com.google.code.gson:gson</include> <include>com.github.stephenc.jcip:jcip-annotations</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.google.gson</pattern> <shadedPattern>com.nimbusds.jose.shaded.gson</shadedPattern> </relocation> <relocation> <pattern>net.jcip.annotations</pattern> <shadedPattern>com.nimbusds.jose.shaded.jcip</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>com.google.code.gson:gson</artifact> <excludes> <exclude>**/module-info.class</exclude> </excludes> </filter> </filters> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <executions> <execution> <id>default-jar</id> </execution> </executions> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>com.nimbusds.jose.jwt</Automatic-Module-Name> <Build-Date>${timestamp}</Build-Date> <Build-Number>${buildNumber}</Build-Number> <Build-Tag>${project.scm.tag}</Build-Tag> </manifestEntries> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>7</source> <author>true</author> <version>true</version> <use>true</use> <linksource>true</linksource> <windowtitle>Nimbus JOSE + JWT v${project.version}</windowtitle> <doctitle>Nimbus JOSE + JWT v${project.version}</doctitle> <overview>${basedir}/src/main/javadoc/overview.html</overview> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.3</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <goals>deploy</goals> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <getRevisionOnlyOnce>true</getRevisionOnlyOnce> <doCheck>false</doCheck> <doUpdate>false</doUpdate> <timestampFormat>{0,date,yyyyMMdd.HHmmss.SSS}</timestampFormat> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>jacoco-init</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>jacoco-report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.9</version> <extensions>true</extensions> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Export-Package>com.nimbusds.jose.*,com.nimbusds.jwt.*</Export-Package> <Import-Package>!com.google.gson.*,*</Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.79</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcutil-jdk18on</artifactId> <version>1.79</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>1.79</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> <properties> <jar.attachClassifier>false</jar.attachClassifier> </properties> </profile> </profiles> <dependencies> <dependency> <groupId>com.google.crypto.tink</groupId> <artifactId>tink</artifactId> <version>1.16.0</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>protobuf-java</artifactId> <groupId>com.google.protobuf</groupId> </exclusion> <exclusion> <artifactId>gson</artifactId> <groupId>com.google.code.gson</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.79</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.bitbucket.b_c</groupId> <artifactId>jose4j</artifactId> <version>0.9.6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.jadler</groupId> <artifactId>jadler-all</artifactId> <version>1.3.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jadler-core</artifactId> <groupId>net.jadler</groupId> </exclusion> <exclusion> <artifactId>jadler-jetty</artifactId> <groupId>net.jadler</groupId> </exclusion> <exclusion> <artifactId>jadler-junit</artifactId> <groupId>net.jadler</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>2.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.25.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcutil-jdk18on</artifactId> <version>1.79</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>1.79</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>