Library for interacting with a Ark Blockchain using the JVM.
first you need to include one of these code blocks in your build system's config file in order to find the jar
build.gradle
repositories {
maven {
url https://dl.bintray.com/singh/ark-io/
}
}
pom.xml
<profiles>
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-singh-ark-io</id>
<name>bintray</name>
<url>https://dl.bintray.com/singh/ark-io</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-singh-ark-io</id>
<name>bintray-plugins</name>
<url>https://dl.bintray.com/singh/ark-io</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
build.gradle
compile 'io.ark:ark-java:1.0.0'
pom.xml
<dependency>
<groupId>io.ark</groupId>
<artifactId>ark-java</artifactId>
<version>1.0.0</version>
<type>pom</type>
</dependency>
Contributions are greatly appreciated. Please refer to the CONTRIBUTING.md file before creating a pull request.