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>
<groupId>com.sigmaflare</groupId>
<artifactId>binancej</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
```
### Gradle
`compile group: 'com.sigmaflare', name: 'binancej', version: '1.0.2'`
`compile group: 'com.sigmaflare', name: 'binancej', version: '1.0.4'`
## Licensing

6
build.gradle

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

Loading…
Cancel
Save