Skip to content

Installation

HestiaStore is published to Maven Central as org.hestiastore:engine.

Prerequisites

  • Java 17 or newer
  • Maven 3.6+ or Gradle 6+

Latest artifact: org.hestiastore:engine

Maven

<dependencies>
  <dependency>
    <groupId>org.hestiastore</groupId>
    <artifactId>engine</artifactId>
    <version><!-- latest version --></version>
  </dependency>
</dependencies>

Verify the dependency is resolved:

mvn dependency:tree

Gradle (Groovy DSL)

repositories {
  mavenCentral()
}

dependencies {
  implementation "org.hestiastore:engine:<latest>"
}

Verify the dependency is resolved:

./gradlew dependencyInsight --dependency org.hestiastore:engine

Gradle (Kotlin DSL)

repositories {
  mavenCentral()
}

dependencies {
  implementation("org.hestiastore:engine:<latest>")
}

Build from source

If you need a local build instead of a published release:

mvn install

Then continue with Quick Start.