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

Getting Started

Jonah edited this page Sep 25, 2018 · 1 revision

Payload: Getting Started

Use maven to add Payload as a dependency to your project. I recommend installing it as a local repository, but you can also use a cool service called jitpack.io that allows for dependencies to be automatically served based on GitHub releases.

Add Payload as a dependency

You can add Payload as a dependency using Jitpack.io (below) or by cloning and installing the repository on your machine:

Install Locally:

By using this method you can make changes to the project if you wish as well.

  1. Navigate to the directory where you want to store the repository

  2. git clone git@github.com:jonahseguin/Payload.git

  3. cd Payload

  4. mvn clean package install

And fetch updates of course with git pull origin master

Using Jitpack.io:

Add this to your repositories:

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

and this to your dependencies:

<dependency>
    <groupId>com.github.jonahseguin</groupId>
    <artifactId>Payload</artifactId>
    <version>LATEST</version>
</dependency>

End

See the other GitHub wiki pages to learn how to use Payload.

Payload

asynchronous fail-safe profile & object caching


Read First: Getting Started


How To: Profile Cache

How To: Object Cache


Copyright (c) 2018 Jonah Seguin. All rights reserved.

Clone this wiki locally