Skip to content
This repository has been archived by the owner on Apr 23, 2019. It is now read-only.

Latest commit

 

History

History
53 lines (36 loc) · 2.36 KB

README.md

File metadata and controls

53 lines (36 loc) · 2.36 KB

Cava: ConsenSys Core Libraries for Java (& Kotlin)

Build Status License Download

In the spirit of Google Guava, Cava is a set of libraries and other tools to aid development of blockchain and other decentralized software in Java and other JVM languages.

It includes a low-level bytes library, serialization and deserialization codecs (e.g. RLP), various cryptography functions and primatives, and lots of other helpful utilities.

Cava is developed for JDK 1.8 or higher, and depends on various other FOSS libraries, including Guava.

Getting cava

Note that these libraries are experimental and are subject to change.

The libraries are published to ConsenSys bintray repository and linked to JCenter.

You can import all modules using the cava jar.

With Maven:

<dependency>
  <groupId>net.consensys.cava</groupId>
  <artifactId>cava</artifactId>
  <version>0.1.0</version>
</dependency>

With Gradle: compile 'net.consensys.cava:cava:0.1.0'

PACKAGES.md contains the list of modules and instructions to import them separately.

Build Instructions

To build, clone this repo and run with ./gradlew like so:

git clone --recursive https://github.com/ConsenSys/cava
cd cava
./gradlew

After a successful build, libraries will be available in build/libs.

Links