Online Marketplace Payments
v1.x requires Balanced API 1.1. Use v0.x for Balanced API 1.0.
- gson 2.2.2
- httpclient 4.2.1
- commons-lang 3.1
- commons-codec 1.7
Which you can download to target/dependency
using:
$ mvn dependency:copy-dependencies
Please Github issues to request features or report bugs.
Add this dependency to your pom.xml
:
<dependency>
<groupId>com.balancedpayments</groupId>
<artifactId>balancedpayments</artifactId>
<version>1.0</version>
</dependency>
NOTE: the <version>XXX</version>
can be out of date in this README.
See https://docs.balancedpayments.com/1.1/guides/quickstart/?language=java
See https://docs.balancedpayments.com/1.1/api/?language=java for guides and documentation.
$ mvn test
$ mvn clean deploy
$ mvn release:clean
$ mvn release:prepare
$ mvn release:perform
Done using the Sonatype Nexus UI.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Write your code and tests
- Ensure all tests still pass
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new pull request
- You!