sshkey
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.adamcin.sshkey</groupId>
<artifactId>sshkey</artifactId>
<version>0.6.0</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.sshkey</groupId>
<artifactId>sshkey</artifactId>
<version>0.6.0</version>
<packaging>pom</packaging>
<inceptionYear>2013</inceptionYear>
<name>SSHKey</name>
<description>Reference implementation of an SSH Key HTTP Authentication Scheme</description>
<url>http://adamcin.net/net.adamcin.sshkey</url>
<scm>
<url>https://github.com/adamcin/${project.groupId}</url>
<developerConnection>scm:git:git@github.com:adamcin/${project.groupId}.git</developerConnection>
<connection>scm:git://github.com/adamcin/${project.groupId}.git</connection>
</scm>
<modules>
<module>api</module>
<module>test-common</module>
<module>jce</module>
<module>bouncycastle</module>
<module>jsch</module>
<module>clientauth</module>
</modules>
<properties>
<encoding>UTF-8</encoding>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
<slf4j.version>1.6.1</slf4j.version>
<junit.version>4.10</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>9.1.0.v20131115</jetty.version>
</properties>
<issueManagement>
<system>github</system>
<url>http://github.com/adamcin/${project.groupId}/issues/</url>
</issueManagement>
<developers>
<developer>
<id>madamcin</id>
<name>Mark Adamcin</name>
<email>adamcin@gmail.com</email>
<url>http://adamcin.net</url>
<organization>Acquity Group</organization>
<organizationUrl>http://www.acquitygroup.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<build>
<pluginManagement>
<plugins>
<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>
</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.9</version>
</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>
<!--
<plugin>
<groupId>net.adamcin</groupId>
<artifactId>vltpack-maven-plugin</artifactId>
<version>1.0.4</version>
<configuration>
<bundleInstallPath>/libs/sshkey/install</bundleInstallPath>
</configuration>
</plugin>
-->
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<configuration>
<inputEncoding>utf-8</inputEncoding>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.9</version>
<configuration>
<message>Creating site for ${project.artifactId} ${project.version}</message>
<noJekyll>true</noJekyll>
<merge>true</merge>
<repositoryOwner>adamcin</repositoryOwner>
<repositoryName>${project.groupId}</repositoryName>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</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.sshkey</groupId>
<artifactId>sshkey-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.adamcin.sshkey</groupId>
<artifactId>sshkey-test-common</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.adamcin.sshkey</groupId>
<artifactId>sshkey-jce</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.adamcin.sshkey</groupId>
<artifactId>sshkey-bouncycastle</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.adamcin.sshkey</groupId>
<artifactId>sshkey-jsch</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.adamcin.sshkey</groupId>
<artifactId>sshkey-clientauth</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.adamcin.sshkey</groupId>
<artifactId>net.adamcin.sshkey.clitool</artifactId>
<version>${project.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</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>net.adamcin.commons</groupId>
<artifactId>net.adamcin.commons.testing</artifactId>
<version>0.8.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>