Wiki

Clone wiki

Simple Plugin Library / Home

Welcome

To get started setting up the plugin library, you can use one of two options:

If you have maven, you can include it as a dependency in your pom by adding the following repo and dependency:

#!XML
<repository>
  <id>pluginlib-repo</id>
  <url>
  https://ampextech.ddns.net/jenkins/plugin/repository/project/Simple%20Plugin%20Library/LastSuccessful/repository/
  </url>
</repository>

<!-- note that there will be things in between this, like the closing for repositories and opening for dependencies -->

<dependency>
   <groupId>org.bitbucket.backspace119</groupId>
  <artifactId>PluginLibrary</artifactId>
  <version>0.10.0-BETA</version> <!--This version will change, please check the version in the latest commit/source-->
  <type>jar</type>
  <scope>compile</scope>
</dependency>

If you do not have maven, you can find the project on bukkit dev and download the plugin version of the library. Then just include it as a library in your build path as you would with any other plugin. MAKE SURE TO PUT ON YOUR PAGE THAT THE SERVER MUST HAVE THE SIMPLE PLUGIN LIBRARY PLUGIN INSTALLED IF YOU FOLLOW THIS ROUTE.

Now, on to programming with the library

Updated