A wrapper for the WorldGuard API that allows plugins to support both v6 and v7 APIs.
Go to file
2018-12-14 21:09:12 +01:00
api Use generics in the getFlag method 2018-11-28 13:58:56 +01:00
implementation Use generics in the getFlag method 2018-11-28 13:58:56 +01:00
library Use compile scope for implementations 2018-11-29 15:53:34 +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 Bump maven-jar-plugin from 3.1.0 to 3.1.1 2018-12-13 05:43:26 +00:00
README.md Update README.md 2018-12-14 21:09:12 +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.1-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>