java-triton-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.joyent.triton</groupId>
<artifactId>java-triton-client</artifactId>
<version>0.0.4-b2</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.joyent.triton</groupId>
<artifactId>java-triton-client</artifactId>
<name>java-triton</name>
<version>0.0.4-b2</version>
<description>Java Triton CloudAPI SDK</description>
<url>https://github.com/joyent/java-triton</url>
<issueManagement>
<system>github.com</system>
<url>https://github.com/joyent/java-triton/issues</url>
</issueManagement>
<developers>
<developer>
<name>Elijah Zupancic</name>
<email>elijah@zupancic.name</email>
<organization>Joyent</organization>
<organizationUrl>joyent.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>MPL 2.0</name>
<url>https://www.mozilla.org/MPL/2.0/</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/joyent/java-triton.git</connection>
<developerConnection>scm:git:git://github.com/joyent/java-triton.git</developerConnection>
<tag>java-triton-client-0.0.4-b2</tag>
<url>git@github.com:joyent/java-triton.git</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven-checkstyle-plugin.version}</version>
<executions>
<execution>
<id>checkstyle</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<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>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven-clean-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.min.version}</source>
<target>${java.min.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>${maven-dependency-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
<plugin>
<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.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${maven-build-helper-plugin}</version>
<executions>
<execution>
<id>add-test-source</id>
<phase>process-resources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>src/integration/java</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-example-source</id>
<phase>process-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/examples/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<executions>
<execution>
<id>failsafe-integration-tests</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
</executions>
<configuration>
<skipTests>${skipITs}</skipTests>
<forkCount>${surefire.forkCount}</forkCount>
<useSystemClassLoader>${surefire.useSystemClassLoader}</useSystemClassLoader>
<includes>
<include>**/*IT.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>${maven-install-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<excludes>
<exclude>org/example/**/*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>${maven-jarsigner-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
</plugin>
<plugin>
<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>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>${surefire.forkCount}</forkCount>
<useSystemClassLoader>${surefire.useSystemClassLoader}</useSystemClassLoader>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven-shade-plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
<excludes>
<exclude>com.google.code.findbugs:jsr305</exclude>
<exclude>org.slf4j:slf4j-api</exclude>
<exclude>org.bouncycastle:*</exclude>
<exclude>com.squareup.jnagmp:*</exclude>
<exclude>net.java.dev.jna:*</exclude>
<exclude>org.threeten:*</exclude>
<exclude>org.hamcrest:*</exclude>
<exclude>org.mockito:*</exclude>
</excludes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.joyent.http</pattern>
<shadedPattern>com.joyent.triton.http</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache</pattern>
<shadedPattern>com.joyent.triton.org.apache</shadedPattern>
</relocation>
<relocation>
<pattern>com.fasterxml</pattern>
<shadedPattern>com.joyent.triton.com.fasterxml</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.54</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.54</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.jnagmp</groupId>
<artifactId>bouncycastle-rsa</artifactId>
<version>1.1.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>bcpkix-jdk15on</artifactId>
<groupId>org.bouncycastle</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>1.3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.3</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>org.slf4j</artifactId>
<groupId>slf4j-api</groupId>
</exclusion>
<exclusion>
<artifactId>logback-core</artifactId>
<groupId>ch.qos.logback</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.9</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
<exclusion>
<artifactId>ant</artifactId>
<groupId>org.apache.ant</groupId>
</exclusion>
<exclusion>
<artifactId>jcommander</artifactId>
<groupId>com.beust</groupId>
</exclusion>
<exclusion>
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
</exclusion>
<exclusion>
<artifactId>bsh</artifactId>
<groupId>org.beanshell</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>2.0.2-beta</version>
<scope>compile</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<version>${maven-jxr-plugin.version}</version>
</plugin>
</plugins>
</reporting>
<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>
<maven-clean-plugin.version>3.0.0</maven-clean-plugin.version>
<maven-install-plugin.version>2.5.2</maven-install-plugin.version>
<dependency.jnagmp.version>1.1.0</dependency.jnagmp.version>
<dependency.mockito.version>2.0.2-beta</dependency.mockito.version>
<maven-build-helper-plugin>1.10</maven-build-helper-plugin>
<maven-enforcer-plugin.version>1.4.1</maven-enforcer-plugin.version>
<surefire.forkCount>1</surefire.forkCount>
<checkstyle.skip>false</checkstyle.skip>
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
<maven-jarsigner-plugin.version>1.4</maven-jarsigner-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dependency.jackson-datatype-threetenbp-version>2.6.4</dependency.jackson-datatype-threetenbp-version>
<dependency.slfj.version>1.7.7</dependency.slfj.version>
<maven-failsafe-plugin.version>2.19</maven-failsafe-plugin.version>
<dependency.commons-lang>3.4</dependency.commons-lang>
<maven-source-plugin.version>2.4</maven-source-plugin.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<skipTests>false</skipTests>
<maven-jar-plugin.version>2.6</maven-jar-plugin.version>
<dependency.jackson-core-version>2.7.3</dependency.jackson-core-version>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<dependency.bouncycastle.version>1.54</dependency.bouncycastle.version>
<dependency.commons-io>2.4</dependency.commons-io>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<maven.min.version>3.0</maven.min.version>
<maven-dependency-plugin.version>2.10</maven-dependency-plugin.version>
<skipITs>false</skipITs>
<maven-jxr-plugin.version>2.5</maven-jxr-plugin.version>
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
<dependency.checkstyle.version>6.17</dependency.checkstyle.version>
<dependency.logback.version>1.1.3</dependency.logback.version>
<maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version>
<dependency.jackson-annotations-version>2.7.3</dependency.jackson-annotations-version>
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
<dependency.guava.version>19.0</dependency.guava.version>
<java.min.version>1.7</java.min.version>
<dependency.testng.version>6.9.9</dependency.testng.version>
<dependency.threetenbp-version>1.3.1</dependency.threetenbp-version>
<dependency.java-http-signature.version>2.2.0</dependency.java-http-signature.version>
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>
<maven-surefire-plugin.version>2.19</maven-surefire-plugin.version>
<surefire.useSystemClassLoader>true</surefire.useSystemClassLoader>
<dependency.jackson.version>2.7.3</dependency.jackson.version>
</properties>
</project>