A wrapper for the WorldGuard API that allows plugins to support both v6 and v7 APIs.
Go to file
2018-12-21 13:45:33 +01:00
api Fix non primitive flag types, api changes, bump version 2018-12-21 13:45:33 +01:00
implementation Fix non primitive flag types, api changes, bump version 2018-12-21 13:45:33 +01:00
library Fix non primitive flag types, api changes, bump version 2018-12-21 13:45:33 +01:00
.gitattributes Initial commit 2018-08-02 01:04:23 +02:00
.gitignore Update .gitignore 2018-08-02 13:24:24 +02:00
.travis.yml Add travis CI 2018-11-27 23:08:31 +01:00
LICENSE Initial commit 2018-08-02 01:04:23 +02:00
pom.xml Fix non primitive flag types, api changes, bump version 2018-12-21 13:45:33 +01:00
README.md Fix non primitive flag types, api changes, bump version 2018-12-21 13:45:33 +01:00

WorldGuardWrapper

Build Status Maven Javadocs Discord

A wrapper for the WorldGuard API that allows plugins to support both v6 and v7 APIs.

Maven dependency

How to include WorldEditWrapper into your maven project:

    <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.1.2-SNAPSHOT</version>
        </dependency>
    </dependencies>

Remember to include/relocate the library into your final jar, example:

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>3.2.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>