WorldGuardWrapper/README.md

55 lines
1.8 KiB
Markdown
Raw Normal View History

2018-08-02 01:05:04 +02:00
# WorldGuardWrapper
2018-08-02 01:21:36 +02:00
[![Build Status](https://ci.codemc.org/buildStatus/icon?job=CodeMC/WorldEditWrapper)](https://ci.codemc.org/view/Author/job/CodeMC/job/WorldEditWrapper/)
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
<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.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
```
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>
<version>3.1.1</version>
<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>
```