Skip to content

Latest commit

 

History

History
80 lines (48 loc) · 1.93 KB

README.md

File metadata and controls

80 lines (48 loc) · 1.93 KB

Balanced

Online Marketplace Payments

Build Status

v1.x requires Balanced API 1.1. Use v0.x for Balanced API 1.0.

Requirements

Which you can download to target/dependency using:

$ mvn dependency:copy-dependencies

Issues

Please Github issues to request features or report bugs.

Installation

Maven

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.

Quickstart

See https://docs.balancedpayments.com/1.1/guides/quickstart/?language=java

Usage

See https://docs.balancedpayments.com/1.1/api/?language=java for guides and documentation.

Testing

$ mvn test

Publishing

Sonatype OSS repository.

Snapshot

$ mvn clean deploy

Stage Release

$ mvn release:clean
$ mvn release:prepare
$ mvn release:perform

Release

Done using the Sonatype Nexus UI.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Write your code and tests
  4. Ensure all tests still pass
  5. Commit your changes (git commit -am 'Add some feature')
  6. Push to the branch (git push origin my-new-feature)
  7. Create new pull request

Contributors