-
Notifications
You must be signed in to change notification settings - Fork 8
Including fiber in your project
Ridan Vandenbergh edited this page May 2, 2020
·
4 revisions
Fiber is being generously hosted and built on modmuss50's maven repository. Start off by including the repository in your build.gradle
file:
repositories {
// You might have some repositories here already, leave them be!
maven {
url = "https://maven.modmuss50.me/"
}
}
Next up, find the dependencies
section and add fiber.
dependencies {
// You might have some dependencies here already, leave them be!
implementation "me.zeroeightsix:fiber:0.21.0-SNAPSHOT"
}
This example depends on fiber version 0.21.0
, but beware: there's probably newer versions out at the time you're reading this! If you'd like to get the latest version, try finding it here.
Great, now you've got access to fiber! Let's start writing our first configuration file in the next chapter, structure of a configuration file.