Download aws-hal-client-java-1.3.0.jar file

Introduction

You can download aws-hal-client-java-1.3.0.jar in this page.

License

Apache License, Version 2.0

Type List

aws-hal-client-java-1.3.0.jar file has the following types.

LICENSE.txt
META-INF/MANIFEST.MF
META-INF/maven/com.amazonaws/aws-hal-client-java/pom.properties
META-INF/maven/com.amazonaws/aws-hal-client-java/pom.xml
NOTICE.txt
README.txt
com.amazonaws.hal.HalService.class
com.amazonaws.hal.ImmediatelyExpiringCache.class
com.amazonaws.hal.JsonPatch.class
com.amazonaws.hal.Link.class
com.amazonaws.hal.RelationNotAvailableException.class
com.amazonaws.hal.ResourceInfo.class
com.amazonaws.hal.UriValue.class
com.amazonaws.hal.UriVariable.class
com.amazonaws.hal.client.AcceptHalJsonRequestHandler.class
com.amazonaws.hal.client.ConversionUtil.class
com.amazonaws.hal.client.ConvertingList.class
com.amazonaws.hal.client.ConvertingMap.class
com.amazonaws.hal.client.HalClient.class
com.amazonaws.hal.client.HalJsonArrayUnmarshaller.class
com.amazonaws.hal.client.HalJsonCurieUnmarshaller.class
com.amazonaws.hal.client.HalJsonEmbeddedUnmarshaller.class
com.amazonaws.hal.client.HalJsonLinkUnmarshaller.class
com.amazonaws.hal.client.HalJsonLinksUnmarshaller.class
com.amazonaws.hal.client.HalJsonListUnmarshaller.class
com.amazonaws.hal.client.HalJsonMapUnmarshaller.class
com.amazonaws.hal.client.HalJsonResourceUnmarshaller.class
com.amazonaws.hal.client.HalLink.class
com.amazonaws.hal.client.HalLinkList.class
com.amazonaws.hal.client.HalLinkMap.class
com.amazonaws.hal.client.HalResource.class
com.amazonaws.hal.client.HalResourceInvocationHandler.class
com.amazonaws.hal.client.JsonUnmarshallerUtil.class
com.amazonaws.hal.client.MapBackedInvocationHandler.class
com.amazonaws.hal.client.OptionalJsonResponseHandler.class
com.amazonaws.hal.client.StatusCodeErrorResponseHandler.class

Pom

aws-hal-client-java-1.3.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License").
  ~ You may not use this file except in compliance with the License.
  ~ A copy of the License is located at
  ~
  ~  http://aws.amazon.com/apache2.0
  ~
  ~ or in the "license" file accompanying this file. This file is distributed
  ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  ~ express or implied. See the License for the specific language governing
  ~ permissions and limitations under the License.
  -->

<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>

    <name>HalClient</name>
    <groupId>com.amazonaws</groupId>
    <artifactId>aws-hal-client-java</artifactId>
    <version>1.3.0</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>

        <dependency>
            <groupId>com.amazonaws</groupId>
            <artifactId>aws-java-sdk-core</artifactId>
            <version>[1.9.39,2.0)</version>
        </dependency>

        <dependency>
            <groupId>com.damnhandy</groupId>
            <artifactId>handy-uri-templates</artifactId>
            <version>2.0.2</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
        </dependency>

    </dependencies>

    <profiles>
        <!--
        The maven release plugin will set the property performRelease, thereby activating this profile.
        Artifacts will be signed only when executing a maven release:perform.
        Comment out or remove this profile if you do not wish to sign your artifacts when performing a release.
        -->
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <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>
                </plugins>
            </build>
        </profile>
    </profiles>

    <build>
        <resources>
            <resource>
                <directory>${project.basedir}</directory>
                <includes>
                    <include>LICENSE.txt</include>
                    <include>NOTICE.txt</include>
                    <include>README.txt</include>
                </includes>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                        <configuration>
                            <includePom>true</includePom>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9.1</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.4.2</version>
                <configuration>
                    <preparationGoals>clean verify install</preparationGoals>
                    <pushChanges>false</pushChanges>
                    <localCheckout>true</localCheckout>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>https://aws.amazon.com/apache2.0</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>scm:git:git@github.com:awslabs/aws-hal-client-java.git</url>
        <connection>scm:git:git@github.com:awslabs/aws-hal-client-java.git</connection>
        <developerConnection>scm:git:git@github.com:awslabs/aws-hal-client-java.git</developerConnection>
      <tag>aws-hal-client-java-1.3.0</tag>
  </scm>

</project>

POM Entry

<dependency>
   <groupId>com.amazonaws</groupId>
   <artifactId>aws-hal-client-java</artifactId>
   <version>1.3.0</version>
</dependency>

Download

If you think the following aws-hal-client-java-1.3.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download aws-hal-client-java-1.3.0.jar file




PreviousNext

Related