Browse Source

Bump version, move central repo to xchg

master
Taylor Bockman 6 years ago
parent
commit
42abdde19a
  1. 4
      README.md
  2. 6
      build.gradle

4
README.md

@ -13,13 +13,13 @@ A Java 8 implementation of the [Binance API Specification](https://github.com/bi
<dependency> <dependency>
<groupId>com.sigmaflare</groupId> <groupId>com.sigmaflare</groupId>
<artifactId>binancej</artifactId> <artifactId>binancej</artifactId>
<version>1.0.3</version> <version>1.0.4</version>
</dependency> </dependency>
``` ```
### Gradle ### Gradle
`compile group: 'com.sigmaflare', name: 'binancej', version: '1.0.2'` `compile group: 'com.sigmaflare', name: 'binancej', version: '1.0.4'`
## Licensing ## Licensing

6
build.gradle

@ -8,7 +8,7 @@ plugins {
group = "com.sigmaflare" group = "com.sigmaflare"
archivesBaseName = "binancej" archivesBaseName = "binancej"
version = '1.0.3-SNAPSHOT' version = '1.0.4-SNAPSHOT'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT") ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
// Add default values for OSSRH // Add default values for OSSRH
@ -80,10 +80,10 @@ uploadArchives {
packaging 'jar' packaging 'jar'
// optionally artifactId can be defined here // optionally artifactId can be defined here
description 'A java implementation of the Binance API Specification' description 'A java implementation of the Binance API Specification'
url 'https://github.com/angrygoats/binancej' url 'https://git.xchg.sh/angrygoats/binancej'
scm { scm {
url 'https://github.com/angrygoats/binancej' url 'https://git.xchg.sh/angrygoats/binancej'
} }
licenses { licenses {

Loading…
Cancel
Save