> For the complete documentation index, see [llms.txt](https://definedoddy.gitbook.io/fluid-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://definedoddy.gitbook.io/fluid-api/master.md).

# Installation

## Setting up a project

At the moment, the simplest way to integrate Fluid into your project is by adding the Maven dependency:

{% code title="pom.xml" %}

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

<dependency>
	<groupId>com.github.DefineDoddy</groupId>
	<artifactId>fluid-api</artifactId>
	<version>VERSION</version>
</dependency>
```

{% endcode %}

{% hint style="warning" %}
&#x20;Note: In order for the API to work, you need to make sure the dependency is included in the final jar
{% endhint %}
