Maven Repository - POM file for Development xchange-core 1.4.0 1.4.0

Summary

XChange Core.

Core functionality used by all other modules..

Declaration

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

<dependency>
   <groupId>com.xeiam.xchange</groupId>
   <artifactId>xchange-core</artifactId>
   <version>1.4.0</version>
</dependency>

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

Packages

The following packages are defined in the xchange-core-1.4.0.jar

com.xeiam.xchange
com.xeiam.xchange.currency
com.xeiam.xchange.dto
com.xeiam.xchange.dto.account
com.xeiam.xchange.dto.marketdata
com.xeiam.xchange.dto.trade
com.xeiam.xchange.rest
com.xeiam.xchange.service
com.xeiam.xchange.service.account.polling
com.xeiam.xchange.service.marketdata.polling
com.xeiam.xchange.service.marketdata.streaming
com.xeiam.xchange.service.trade.polling
com.xeiam.xchange.streaming.socketio
com.xeiam.xchange.streaming.websocket
com.xeiam.xchange.streaming.websocket.drafts
com.xeiam.xchange.streaming.websocket.exceptions
com.xeiam.xchange.utils




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.xeiam.xchange</groupId>
    <artifactId>xchange-parent</artifactId>
    <version>1.4.0</version>
  </parent>

  <artifactId>xchange-core</artifactId>

  <name>XChange Core</name>
  <description>Core functionality used by all other modules.</description>

  <url>http://xeiam.com</url>
  <inceptionYear>2012</inceptionYear>

  <organization>
    <name>Xeiam, LLC</name>
    <url>http://xeiam.com</url>
  </organization>

  <!-- Parent provides default configuration for dependencies -->
  <dependencies>

    <!-- Third party dependencies -->
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>

    <!-- Jackson JSON Mapper -->
    <dependency>
      <groupId>org.codehaus.jackson</groupId>
      <artifactId>jackson-mapper-asl</artifactId>
    </dependency>

    <!-- All money handling is through Joda Money -->
    <dependency>
      <groupId>org.joda</groupId>
      <artifactId>joda-money</artifactId>
    </dependency>

    <dependency>
      <groupId>javax.ws.rs</groupId>
      <artifactId>jsr311-api</artifactId>
    </dependency>

  </dependencies>

</project>