Skip to content

Commit

Permalink
added GateCoin back to parent POM
Browse files Browse the repository at this point in the history
  • Loading branch information
timmolter committed Aug 9, 2015
1 parent 070ac17 commit 4ef6211
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 30 deletions.
3 changes: 2 additions & 1 deletion pom.xml
Expand Up @@ -102,7 +102,8 @@
<module>xchange-cryptonit</module>
<module>xchange-cryptsy</module>
<module>xchange-empoex</module>
<module>xchange-examples</module>
<module>xchange-examples</module>
<module>xchange-gatecoin</module>
<module>xchange-hitbtc</module>
<module>xchange-itbit</module>
<module>xchange-independentreserve</module>
Expand Down
38 changes: 19 additions & 19 deletions xchange-gatecoin/pom.xml
@@ -1,12 +1,13 @@
<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">
<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>
<groupId>com.xeiam.xchange</groupId>
<artifactId>xchange-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<relativePath/>
<version>4.0.0-SNAPSHOT</version>
<relativePath />
</parent>

<artifactId>xchange-gatecoin</artifactId>
Expand All @@ -21,40 +22,39 @@
<name>Xeiam, LLC</name>
<url>http://xeiam.com</url>
</organization>
<repositories>
<repositories>
<repository>
<id>sonatype-oss-snapshot</id>
<snapshots/>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<id>sonatype-oss-snapshot</id>
<snapshots />
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>

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

<dependency>
<groupId>com.xeiam.xchange</groupId>
<artifactId>xchange-core</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<exclusions>
<!-- because the pusher jar has its own fork of Java-Websocket -->
<exclusion>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependency>

<dependency>
<groupId>com.pusher</groupId>
<artifactId>pusher-java-client</artifactId>
</dependency>
<dependency>
<groupId>org.apache-extras.camel-extra</groupId>
<artifactId>camel-example-rcode</artifactId>
<version>2.12.3</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache-extras.camel-extra</groupId>
<artifactId>camel-example-rcode</artifactId>
<type>jar</type>
</dependency>
</dependencies>

</project>
@@ -1,10 +1,6 @@
package com.xeiam.xchange.gatecoin.service.polling;

import java.io.IOException;
import java.util.List;

import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.currency.CurrencyPair;
import com.xeiam.xchange.service.BaseExchangeService;
import com.xeiam.xchange.service.polling.BasePollingService;

Expand All @@ -23,10 +19,4 @@ public GatecoinBasePollingService(Exchange exchange) {
super(exchange);
}

@Override
public List<CurrencyPair> getExchangeSymbols() throws IOException {

return exchange.getMetaData().getCurrencyPairs();
}

}

0 comments on commit 4ef6211

Please sign in to comment.