pamandrejko / quilt

Hyperledger Quilt - An implementation of the Interledger Protocol

Home Page:https://interledger.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hyperledger Quilt join the chat twitter

circle-ci codecov issues

Quilt is an implementation of the Interledger protocol in Java.

Modules

The quilt project is organised as a Maven multi-module project. Each module exists in a subdirectory and has its own POM and README.

Dependency and plugin versions are managed in the parent project.

Issues are labelled and prefixed to make it easy to identify which project they relate to.

ilp-core

The ilp-core module is the base library for any Interledger projects providing service interfaces, event descriptions, exceptions and data models. It also includes an encoding framework and codecs for encoding and decoding ILP objects using the Octet Encoding Rules (OER).

GitHub issues

READ MORE

dev-ops

Dev-ops is a module for shared build and test tools

READ MORE

Usage

Requirements

Unlimited Strength Encryption Policy Files

In order to properly build this project, you must download and install Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy files. For more details, follow the instructions here.

Maven

This project uses Maven to manage dependencies and other aspects of the build. To install Maven, follow the instructions at https://maven.apache.org/install.html.

Modules in this library can be included in your project by first adding a Snapshot Repository to your pom.xml file, like this:

<repositories>
    ...
    <repository>
        <id>sonatype</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
    </repository>
    ...
</repositories>

Next, add the following Maven dependency:

<dependencies>
  ...
  <dependency>
    <groupId>org.interledger</groupId>
    <artifactId>java-ilp-core</artifactId>
    <version>0.13.0-SNAPSHOT</version>
  </dependency>
  ...
</dependencies>

Gradle

To import this library into a project that uses gradle, first add the Snapshot Repository to your gradle.properties file, like this:

repositories {
    mavenCentral()
    maven {
        url "https://oss.sonatype.org/content/repositories/snapshots/"
    }
}

Next, import this library as a dependency, like this:

dependencies {
    ...
    compile group: 'org.interledger', name: 'java-ilp-core', version: '0.13.0-SNAPSHOT'
    ...
}

Development

We welcome any and all submissions, whether it's a typo, bug fix, or new feature. To get started, first download the code:

git clone https://github.com/hyperledger/quilt
cd quilt

Build the Project

To build the project, execute the following command:

$ mvn clean install

Checkstyle

The project uses checkstyle to keep code style consistent. All Checkstyle checks are run by default during the build, but if you would like to run checkstyle checks, use the following command:

$ mvn checkstyle:checkstyle

About

Hyperledger Quilt - An implementation of the Interledger Protocol

https://interledger.org

License:Apache License 2.0


Languages

Language:Java 99.5%Language:Shell 0.4%Language:Kotlin 0.2%