id | title | description |
---|---|---|
getting-started |
Getting Started |
Java Client Library For Communicating With Core Server Public REST API |
Follow instructions for Gradle or Maven on how to add project to your source control.
Add this to your build.gradle file:
implementation 'org.arkecosystem:client:1.2.9'
Execute the following command:
gradle build
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
-
Fork the package.
-
Clone forked repository.
git clone https://github.com/<githubusername>/java-client
-
Next, move into the fresh cloned directory.
cd java-client
-
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