Skip to content

1. Getting Started

SkyfallWasTaken edited this page Nov 18, 2021 · 3 revisions

Getting started

To install FibLib as a dependency, add the following to your build.gradle file:

Groovy DSL:

repositories {
    maven {
        url "https://hephaestus.dev/release"
    }
}

dependencies {
    modImplementation "dev.hephaestus:FibLib:${project.fiblib_version}"
    include "dev.hephaestus:FibLib:${project.fiblib_version}"
}

Kotlin DSL:

repositories {
    maven {
        url = uri("https://hephaestus.dev/release")
    }
}

dependencies {
    val fiblibVersion: String by project
    modImplementation("dev.hephaestus:FibLib:${fiblib_version}")
    include("dev.hephaestus:FibLib:${fiblib_version}")
}

Add the fiblib_version property to your gradle.properties file. The latest release can be found here.

Clone this wiki locally