Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
/ Reserve Public archive

A plugin offering a variety of APIs for unison across the Spigot/Bukkit ecosystem.

License

Notifications You must be signed in to change notification settings

CFHArchive/Reserve

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reserve

The goal of the Reserve project is to provide a common set of APIs to allow for painless compatibility between various spigot plugins.

APIs Available

  • Economy

Future APIs

  • Ban
  • Permissions
  • Land Protection
  • Minigame

Maven

If order to include Reserve into your project via Maven use the following repository & dependency lines in your POM file.

<repositories>
    <repository>
        <id>reserve-repo</id>
        <url>https://repo.codemc.io/repository/maven-public/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>net.tnemc</groupId>
        <artifactId>Reserve</artifactId>
        <version>0.1.5.3-SNAPSHOT-4</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Gradle

In order to include Reserve into your Gradle project, first add the Maven repository to your repositories section.

repositories {
    // Reserve API
    maven {
        name = 'reserve-repo'
        url = 'https://repo.codemc.io/repository/maven-public/'
    }
}

Then you add the latest version into your dependencies category like so.

dependencies {
   // Reserve API
   compileOnly group:'net.tnemc', name: 'Reserve', version: '0.1.5.3-SNAPSHOT-4'
}

About

A plugin offering a variety of APIs for unison across the Spigot/Bukkit ecosystem.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages