Skip to content

Import LLibrary

GitHub Action edited this page Mar 17, 2025 · 2 revisions

Using Maven

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.LucFr1746</groupId>
    <artifactId>LLibrary</artifactId>
    <version>VERSION</version>
</dependency>

Using Gradle

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}
dependencies {
    implementation 'com.github.LucFr1746:LLibrary:VERSION'
}

You may get the VERSION: here or on top of the page.

Add the API as dependency to your plugin.yml:

depend: [LLibrary]

Or, if you are using paper-plugin.yml:

dependencies:
  server:
    LLibrary:
      load: BEFORE
      required: true
      join-classpath: true

Author: lucfr1746

Clone this wiki locally