Maven Repository - POM file for Http ws-client 0.0.8-1 0.0.8-1

Summary

${project.artifactId}.

Higgs HTTP Client.

Declaration

Here is the list of declaration for ws-client. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>io.higgs</groupId>
   <artifactId>ws-client</artifactId>
   <version>0.0.8-1</version>
</dependency>

If you think this Maven repository POM file listing for ws-client is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The ws-client-0.0.8-1 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Zipjzlib 1.1.2
JZlib is a re-implementation of zlib in pure Java
18
JEEjackson-databind 2.1.2
General data-binding functionality for Jackson: works on core streaming API
60




Plugin

The following plugins are used in the ws-client-0.0.8-1.jar

  1. exec-maven-plugin

POM File Source

Here is the content of the POM file.

<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>
    <artifactId>ws-client</artifactId>
    <version>0.0.8-1</version>
    <name>${project.artifactId}</name>
    <description>Higgs HTTP Client</description>
    <packaging>jar</packaging>
    <parent>
        <groupId>io.higgs</groupId>
        <artifactId>higgs</artifactId>
        <relativePath>../pom.xml</relativePath>
        <version>0.0.8-1</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>io.higgs</groupId>
            <artifactId>core</artifactId>
            <version>0.0.8-1</version>
        </dependency>
        <dependency>
            <groupId>io.higgs</groupId>
            <artifactId>http-client</artifactId>
            <version>0.0.8-1</version>
        </dependency>
        <dependency>
            <groupId>io.higgs</groupId>
            <artifactId>events</artifactId>
            <version>0.0.8-1</version>
        </dependency>
        <!--for oauth url creation-->
        <dependency>
            <groupId>org.scribe</groupId>
            <artifactId>scribe</artifactId>
            <version>1.3.2</version>
        </dependency>
        <!--(de-)compression-->
        <dependency>
            <groupId>com.jcraft</groupId>
            <artifactId>jzlib</artifactId>
            <version>1.1.2</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.1.2</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <configuration>
                    <mainClass>io.higgs.http.client.demo.Demo</mainClass>
                    <includePluginDependencies>false</includePluginDependencies>
                    <systemProperties>
                        <property>
                            <key>java.util.logging.config.file</key>
                            <value>logging.properties</value>
                        </property>
                    </systemProperties>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>