WorldGuardWrapper/README.md

60 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2018-08-02 01:05:04 +02:00
# WorldGuardWrapper
2020-01-03 06:50:21 +01:00
[![Build Status](https://ci.codemc.org/buildStatus/icon?job=CodeMC/WorldGuardWrapper)](https://ci.codemc.org/view/Author/job/CodeMC/job/WorldGuardWrapper/)
2018-08-20 01:32:05 +02:00
![Maven](https://img.shields.io/maven-metadata/v/https/repo.codemc.org/repository/maven-public/org/codemc/worldguardwrapper/worldguardwrapper/maven-metadata.xml.svg)
2020-05-10 15:32:44 +02:00
[![Javadocs](https://img.shields.io/badge/docs-javadocs-brightgreen.svg)](https://ci.codemc.io/job/CodeMC/job/WorldGuardWrapper/javadoc/)
2018-08-20 04:57:13 +02:00
[![Discord](https://img.shields.io/badge/chat-discord-blue.svg)](https://discord.gg/cnKwdsg)
2018-08-02 01:21:36 +02:00
2018-08-02 01:05:04 +02:00
A wrapper for the WorldGuard API that allows plugins to support both v6 and v7 APIs.
2018-08-20 00:50:15 +02:00
## Maven dependency
How to include WorldEditWrapper into your maven project:
```xml
<project>
2018-08-20 00:50:15 +02:00
<repositories>
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.codemc.worldguardwrapper</groupId>
<artifactId>worldguardwrapper</artifactId>
<version>1.2.1-SNAPSHOT</version>
2018-08-20 00:50:15 +02:00
</dependency>
</dependencies>
</project>
2018-08-20 00:50:15 +02:00
```
Remember to include/relocate the library into your final jar, example:
```xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2020-06-26 20:43:44 +02:00
<version>3.2.4</version>
2018-08-20 00:50:15 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>org.codemc.worldguardwrapper</pattern>
<shadedPattern>YOUR.PLUGIN.PACKAGE.libs.worldguardwrapper</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
```