Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCookieLab committed Dec 19, 2021
2 parents dad7d63 + a261c22 commit 6d97e60
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ For ***snapshots***, add the following repository to your `pom.xml` file.
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
```
The current snapshot version is `1.1.1-SNAPSHOT` from the [master](https://github.com/TheCookieLab/poloniex-api-java) branch.
The current snapshot version is `1.1.2-SNAPSHOT` from the [develop](https://github.com/TheCookieLab/poloniex-api-java/tree/develop) branch.
```xml
<dependency>
<groupId>com.github.thecookielab</groupId>
<artifactId>PoloniexClient</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.1.2-SNAPSHOT</version>
</dependency>
```

Expand Down
10 changes: 9 additions & 1 deletion nbactions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,13 @@
<goal>-P</goal>
<goal>release</goal>
</goals>
</action>
</action>
<action>
<actionName>CUSTOM-Snapshot Deployment</actionName>
<displayName>Snapshot Deployment</displayName>
<goals>
<goal>clean</goal>
<goal>deploy</goal>
</goals>
</action>
</actions>
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.thecookielab</groupId>
<artifactId>PoloniexClient</artifactId>
<version>1.1.1</version>
<version>1.1.2-SNAPSHOT</version>
<packaging>jar</packaging>

<name>PoloniexClient</name>
Expand Down Expand Up @@ -114,19 +114,19 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
<version>2.8.5</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.4</version>
<version>4.4.9</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
<version>4.5.5</version>
<type>jar</type>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import com.cf.data.model.poloniex.PoloniexFeeInfo;
import com.cf.data.model.poloniex.PoloniexOpenOrder;
import com.cf.data.model.poloniex.PoloniexOrderResult;
import com.cf.data.model.poloniex.PoloniexOrderTrade;
import com.cf.data.model.poloniex.PoloniexTradeHistory;
import com.cf.data.model.poloniex.PoloniexOrderTrade;
import java.math.BigDecimal;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
Expand Down

0 comments on commit 6d97e60

Please sign in to comment.