httpsig
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig</artifactId>
<version>1.3.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ This is free and unencumbered software released into the public domain.
~
~ Anyone is free to copy, modify, publish, use, compile, sell, or
~ distribute this software, either in source code form or as a compiled
~ binary, for any purpose, commercial or non-commercial, and by any
~ means.
~
~ In jurisdictions that recognize copyright laws, the author or authors
~ of this software dedicate any and all copyright interest in the
~ software to the public domain. We make this dedication for the benefit
~ of the public at large and to the detriment of our heirs and
~ successors. We intend this dedication to be an overt act of
~ relinquishment in perpetuity of all present and future rights to this
~ software under copyright law.
~
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
~ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
~ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
~ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
~ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
~ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
~ OTHER DEALINGS IN THE SOFTWARE.
~
~ For more information, please refer to <http://unlicense.org />
-->
<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>7</version>
</parent>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig</artifactId>
<version>1.3.1</version>
<packaging>pom</packaging>
<inceptionYear>2013</inceptionYear>
<name>${project.artifactId}</name>
<description>Implementation of HTTP Signature Authentication in Java</description>
<url>http://adamcin.net/httpsig-java</url>
<scm>
<url>https://github.com/adamcin/httpsig-java</url>
<developerConnection>scm:git:git@github.com:adamcin/httpsig-java.git</developerConnection>
<connection>scm:git://github.com/adamcin/httpsig-java.git</connection>
<tag>httpsig-1.3.1</tag>
</scm>
<modules>
<module>api</module>
<module>test-common</module>
<module>ssh-jce</module>
<module>ssh-bc</module>
<module>ssh-jsch</module>
<module>hmac</module>
<module>http-helpers</module>
<module>osgi</module>
</modules>
<properties>
<encoding>UTF-8</encoding>
<package-info.version>1.2.0</package-info.version>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<slf4j.version>1.6.1</slf4j.version>
<junit.version>4.11</junit.version>
<maven.bundle.plugin.version>2.3.7</maven.bundle.plugin.version>
<maven.scr.plugin.version>1.9.0</maven.scr.plugin.version>
<scr.annotations.version>1.7.0</scr.annotations.version>
<scr.generator.version>1.3.0</scr.generator.version>
<jetty.version>7.6.16.v20140903</jetty.version>
</properties>
<issueManagement>
<system>github</system>
<url>http://github.com/adamcin/httpsig-java/issues/</url>
</issueManagement>
<developers>
<developer>
<id>madamcin</id>
<name>Mark Adamcin</name>
<email>adamcin@gmail.com</email>
<url>http://adamcin.net</url>
<organization>Infield Digital</organization>
<organizationUrl>https://www.infielddigital.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>Public Domain (Unlicense)</name>
<distribution>repo</distribution>
<url>http://unlicense.org/UNLICENSE</url>
</license>
</licenses>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven.bundle.plugin.version}</version>
<configuration>
<obrRepository>false</obrRepository>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>${maven.scr.plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>${scr.annotations.version}</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.generator</artifactId>
<version>${scr.generator.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.14</version>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<executions>
<execution>
<id>github-site-deploy</id>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>1.0-alpha-3</version> <!-- Be sure to use the last version. Check on the website's plugin -->
<executions>
<execution>
<id>filter-src</id>
<goals>
<goal>filter-sources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<inputEncoding>utf-8</inputEncoding>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<configuration>
<message>Creating site for ${project.artifactId} ${project.version}</message>
<noJekyll>true</noJekyll>
<merge>true</merge>
<repositoryOwner>adamcin</repositoryOwner>
<repositoryName>httpsig-java</repositoryName>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
</plugin>
</plugins>
</reporting>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig-api</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig-test-common</artifactId>
<version>1.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig-ssh-jce</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig-ssh-bc</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig-ssh-jsch</artifactId>
<version>1.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig-hmac</artifactId>
<version>1.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.adamcin.httpsig</groupId>
<artifactId>httpsig-http-helpers</artifactId>
<version>1.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>${scr.annotations.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bndlib</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>[1.4,3.0)</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.50</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.49</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.49</version>
<scope>provided</scope>
</dependency>
<!-- unit test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.adamcin.commons</groupId>
<artifactId>net.adamcin.commons.testing</artifactId>
<version>[0.9.0,1.0.0)</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>