All Projects → CodeMC → WorldGuardWrapper

CodeMC / WorldGuardWrapper

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

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to WorldGuardWrapper

WorldGuardExtraFlagsPlugin
Extension for the WorldGuard plugin.
Stars: ✭ 47 (+123.81%)
Mutual labels:  bukkit, spigot, maven, worldguard
Xseries
Library for cross-version Minecraft Bukkit support and various efficient API methods.
Stars: ✭ 109 (+419.05%)
Mutual labels:  bukkit, spigot, maven
MCAntiMalware
Anti-Malware for minecraft
Stars: ✭ 182 (+766.67%)
Mutual labels:  bukkit, spigot, maven
AreaShop
A Bukkit/Spigot (Minecraft server) plugin that facilitates renting and buying WorldGuard regions
Stars: ✭ 55 (+161.9%)
Mutual labels:  bukkit, spigot, worldguard
advanced-region-market
A Bukkit/Spigot plugin for renting/selling WorldGuard regions
Stars: ✭ 40 (+90.48%)
Mutual labels:  bukkit, spigot, worldguard
ParticleLib
一个用于Minecraft Particle的类库
Stars: ✭ 19 (-9.52%)
Mutual labels:  bukkit, spigot
pluGET
📦 Powerful Package manager which updates plugins & server software for minecraft servers
Stars: ✭ 87 (+314.29%)
Mutual labels:  bukkit, spigot
EnchantmentsEnhance
✨ EE is a game progression mechanism plugin for spigot.
Stars: ✭ 31 (+47.62%)
Mutual labels:  bukkit, spigot
KingdomsX
Battles for might, land and glory.
Stars: ✭ 24 (+14.29%)
Mutual labels:  bukkit, spigot
NoSpawnChunks
Helps manage server memory by dynamically unloading chunks
Stars: ✭ 21 (+0%)
Mutual labels:  bukkit, spigot
dungeon-maze
DungeonMaze Craft Bukkit plugin - An amazing world generator for Bukkit and Spigot
Stars: ✭ 27 (+28.57%)
Mutual labels:  bukkit, spigot
WorldEditSelectionVisualizer
Visualize your WorldEdit selection with particles and without any mod.
Stars: ✭ 31 (+47.62%)
Mutual labels:  bukkit, spigot
MinecraftNetwork
Minecraft server network backend
Stars: ✭ 35 (+66.67%)
Mutual labels:  bukkit, spigot
DragonTravel
A plugin for the Minecraft-servermods "Bukkit" and "Spigot".
Stars: ✭ 17 (-19.05%)
Mutual labels:  bukkit, spigot
NovaGuilds
Minecraft guilds plugin
Stars: ✭ 23 (+9.52%)
Mutual labels:  bukkit, spigot
ScriptBlockPlus
任意のブロックにスクリプトを追加するプラグインです。
Stars: ✭ 25 (+19.05%)
Mutual labels:  bukkit, spigot
ClayTech
An addon for slimefun.
Stars: ✭ 15 (-28.57%)
Mutual labels:  bukkit, spigot
Boss
Premium custom monsters plugin with skill system, natural spawning and lots of sickest features!
Stars: ✭ 72 (+242.86%)
Mutual labels:  bukkit, spigot
SubServers-2
SubServers – The Minecraft Server Management Platform
Stars: ✭ 80 (+280.95%)
Mutual labels:  bukkit, spigot
Hawk
An anticheat written for legacy versions of Spigot
Stars: ✭ 82 (+290.48%)
Mutual labels:  bukkit, spigot

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.2.0-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.4</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>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].