Maven Repository - POM file for Development hydra-api 0.4.1 0.4.1

Summary

${project.artifactId}.

Hydra API.

Declaration

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

<dependency>
   <groupId>com.findwise.hydra</groupId>
   <artifactId>hydra-api</artifactId>
   <version>0.4.1</version>
</dependency>

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

Depends on

The hydra-api-0.4.1 has 7 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
Httphttpclient 4.2.1
HttpComponents Client (base module)
106
JSONgson 1.7.1
Google Gson library
26
Loglogback-classic 1.0.10
logback-classic module
36
JUnitjunit 4.11
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
2031
Testing Mockmockito-all 1.9.5
Mock objects library for java
1072
Filecommons-io 2.4
The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more.
852




Plugin

The following plugins are used in the hydra-api-0.4.1.jar

  1. maven-javadoc-plugin
  2. maven-source-plugin

Packages

The following packages are defined in the hydra-api-0.4.1.jar

com.findwise.hydra
com.findwise.hydra.local
com.findwise.hydra.stage
com.findwise.tools

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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.findwise.hydra</groupId>
    <artifactId>hydra-parent</artifactId>
    <version>0.4.1</version>
  </parent>
  <artifactId>hydra-api</artifactId>
  <packaging>jar</packaging>
  <name>${project.artifactId}</name>
  <description>Hydra API</description>

  <dependencies>
    <dependency>
      <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpclient</artifactId>
      <version>4.2.1</version>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>1.7.1</version>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>1.0.10</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.github.tomakehurst</groupId>
      <artifactId>wiremock</artifactId>
      <version>1.33</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>junit</groupId>
          <artifactId>junit-dep</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.4</version>
      <scope>test</scope>
    </dependency>
  </dependencies>


  <build>
    <finalName>${project.name}</finalName>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>