Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Latest commit

 

History

History

client

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
id title description
getting-started
Getting Started
Java Client Library For Communicating With Core Server Public REST API

Client

Install Package via Gradle or Maven

Follow instructions for Gradle or Maven on how to add project to your source control.

Gradle

Add this to your build.gradle file:

implementation 'org.arkecosystem:client:1.2.9'

Execute the following command:

gradle build

Maven

Add this to pom.xml file:

<dependency>
  <groupId>org.arkecosystem</groupId>
  <artifactId>client</artifactId>
  <version>1.2.9</version>
</dependency>

Execute the following command:

mvn install

Development

  1. Fork the package.

  2. Clone forked repository.

    git clone https://github.com/<githubusername>/java-client
  3. Next, move into the fresh cloned directory.

    cd java-client
  4. Dependencies are now installed, you can now run the tests to see if everything is running as it should.

    With Maven

    mvn test

    With Gradle

    gradle test