# Libb

#### Source code: <https://github.com/MrJetby/Libb>

#### Requirements:

* Java: 17 and higher
* Minecraft version: 1.20 and higher

{% tabs %}
{% tab title="Gradle" %}
{% hint style="danger" %}
The plugin supports addons compiled with **`Java 17`** or higher, provided that the server is running on a Java version not lower than the one used to compile the addon.
{% endhint %}

```css
repositories {
    maven {
        url "http://api.jetby.space/"
        name "jetby-repo"
    }
}

dependencies {
    compileOnly "me.jetby:Libb:1.0"
}
```

{% endtab %}

{% tab title="Maven" %}
{% hint style="danger" %}
The plugin supports addons compiled with <mark style="background-color:red;">**`Java 17`**</mark> or higher, provided that the server is running on a Java version not lower than the one used to compile the addon.
{% endhint %}

```xml
<repository>
  <id>jetby-repo</id>
  <url>http://api.jetby.space/</url>
</repository>

<dependency>
  <groupId>me.jetby</groupId>
  <artifactId>Libb</artifactId>
  <version>VERSION</version>
  <scope>provided</scope>
</dependency>
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.jetby.space/plugins/libb.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
