java-http-signature
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.joyent.http-signature</groupId> <artifactId>java-http-signature</artifactId> <version>4.1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015-2017, Joyent, Inc. All rights reserved. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. --> <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> <groupId>com.joyent.http-signature</groupId> <artifactId>java-http-signature</artifactId> <version>4.1.2</version> <packaging>pom</packaging> <name>java-http-signature</name> <description>Java implementation of HTTP Signature</description> <url>https://github.com/joyent/java-http-signature</url> <inceptionYear>2015</inceptionYear> <organization> <name>Joyent</name> <url>joyent.com</url> </organization> <licenses> <license> <name>MPL 2.0</name> <url>https://www.mozilla.org/MPL/2.0/</url> </license> </licenses> <prerequisites> <maven>${maven.min.version}</maven> </prerequisites> <developers> <developer> <email>elijah@zupancic.name</email> <name>Elijah Zupancic</name> <organization>Joyent</organization> <organizationUrl>joyent.com</organizationUrl> </developer> <developer> <email>ashwin@nair.name</email> <name>Ashwin A Nair</name> <organization>Joyent</organization> <organizationUrl>joyent.com</organizationUrl> </developer> <developer> <name>Phillip Ross</name> <email>phillip.w.g.ross at gmail.com</email> <organization>Luminosity Labs LLC</organization> <timezone>US/Eastern</timezone> </developer> </developers> <modules> <module>common</module> <module>google-http-client</module> <module>apache-http-client</module> <module>jaxrs-client</module> <module>microbench</module> </modules> <scm> <connection>scm:git:git://github.com/joyent/java-http-signature.git</connection> <developerConnection>scm:git:git://github.com/joyent/java-http-signature.git</developerConnection> <url>git@github.com:joyent/java-http-signature.git</url> <tag>java-http-signature-4.1.2</tag> </scm> <issueManagement> <system>github.com</system> <url>https://github.com/joyent/java-http-signature/issues</url> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <checkstyle.skip>false</checkstyle.skip> <java.min.version>1.8</java.min.version> <maven.min.version>3.1</maven.min.version> <maven.test.skip>false</maven.test.skip> <maven.integration.test.skip>false</maven.integration.test.skip> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <surefire.forkCount>1</surefire.forkCount> <surefire.useSystemClassLoader>true</surefire.useSystemClassLoader> <!-- Dependency versions --> <dependency.checkstyle.version>8.31</dependency.checkstyle.version> <dependency.apache-httpclient.version>4.5.11</dependency.apache-httpclient.version> <dependency.testng.version>6.14.3</dependency.testng.version> <dependency.slfj.version>1.7.30</dependency.slfj.version> <dependency.logback.version>1.2.3</dependency.logback.version> <!-- Plugin versions --> <maven-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version> <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version> <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version> <maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version> <maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version> <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version> <maven-jarsigner-plugin.version>3.0.0</maven-jarsigner-plugin.version> <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> <maven-jxr-plugin.version>3.0.0</maven-jxr-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> <maven-shade-plugin.version>3.2.2</maven-shade-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-jacoco-plugin.version>0.8.5</maven-jacoco-plugin.version> <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version> <!-- Maven plugin dependency versions --> <maven-plexus-compiler-javac-errorprone.version>2.8.6</maven-plexus-compiler-javac-errorprone.version> <maven-error-prone-core.version>2.3.4</maven-error-prone-core.version> </properties> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${dependency.testng.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${dependency.checkstyle.version}</version> </dependency> </dependencies> <configuration> <configLocation>checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> <skip>${checkstyle.skip}</skip> <suppressionsLocation>suppressions.xml</suppressionsLocation> <violationSeverity>warning</violationSeverity> <excludes>**/generated/**/*</excludes> </configuration> <executions> <execution> <id>checkstyle</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <compilerId>javac-with-errorprone</compilerId> <forceJavacCompilerUse>true</forceJavacCompilerUse> <source>${java.min.version}</source> <target>${java.min.version}</target> <showWarnings>true</showWarnings> <compilerArgs> <arg>-Xlint:all</arg> <arg>-Xlint:-processing</arg> <arg>-XepDisableWarningsInGeneratedCode</arg> </compilerArgs> </configuration> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-javac-errorprone</artifactId> <version>${maven-plexus-compiler-javac-errorprone.version}</version> </dependency> <!-- override plexus-compiler-javac-errorprone's dependency on Error Prone with the latest version --> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>${maven-error-prone-core.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>[${maven.min.version},)</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> <configuration> <forkCount>${surefire.forkCount}</forkCount> <trimStackTrace>false</trimStackTrace> <useSystemClassLoader>${surefire.useSystemClassLoader}</useSystemClassLoader> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jarsigner-plugin</artifactId> <version>${maven-jarsigner-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <releaseProfiles>release</releaseProfiles> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <forkCount>${surefire.forkCount}</forkCount> <systemPropertyVariables> <exampleSystemPropertyName>exampleSystemPropertyValue</exampleSystemPropertyName> </systemPropertyVariables> <useSystemClassLoader>${surefire.useSystemClassLoader}</useSystemClassLoader> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${maven-jacoco-plugin.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${maven-jxr-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${maven-jacoco-plugin.version}</version> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> </plugins> </reporting> <profiles> <!-- The release profile only needs activated when cutting a release for maven central. It will generate additional artifacts for javadoc and source as well as GPG signatures for each artifact. This profile also assumes that the properties for the gpg plugin (such as gpg.keyname and gpg.passphrase are either defined in a settings.xml file or similar facility. --> <profile> <id>release</id> <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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>