Installation

Simple, efficient background processing for Java. It's a doddle.

Requirements

Doddle currently requires at least Java version 15 and access to the one of the supported storage providers.

Getting started

Doddle dependencies are stored on Maven central under the groupId of dev.doddle

Installation

Install the core dependencies

<dependency>
    <groupId>dev.doddle</groupId>
    <artifactId>core</artifactId>
    <version>${doddle.version}</version>
</dependency>
<dependency>
    <groupId>dev.doddle</groupId>
    <artifactId>web</artifactId>
    <version>${doddle.version}</version>
</dependency>

Now let's add a storage provider!

Last updated