Skip to content

Getting started

Nico edited this page Aug 31, 2021 · 5 revisions

Getting started

In this page you will learn how you can start using Protocolize in your projects.

Installation

Installing Protocolize as a plugin on your BungeeCord or Velocity server is as easy as installing other plugins. Just drop the protocolize-.jar into your plugins folder.

Build Tools

At first you need to add the repository and dependency to your pom file (or your gradle build configuration).

<repository>
 <id>exceptionflug</id>  
 <url>https://mvn.exceptionflug.de/repository/exceptionflug-public/</url>  
</repository>
<dependency>
  <groupId>dev.simplix</groupId>
  <artifactId>protocolize-api</artifactId>
  <version>${protocolize.version}</version>
  <scope>provided</scope>
</dependency>

You can see the latest version on the README.md page.

plugin.yml

You have to add Protocolize to the depends array in your plugin description file.

Clone this wiki locally