Tubing Bukkit

Tubing bukkit is the bukkit extension of Tubing. This is needed if we want to create a spigot plugin.

setup

maven

<dependency>
    <groupId>be.garagepoort.mcioc</groupId>
    <artifactId>tubing-core</artifactId>
    <version>${tubing.version}</version>
    <exclusions>
        <exclusion>
            <groupId>*</groupId>
            <artifactId>*</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>be.garagepoort.mcioc</groupId>
    <artifactId>tubing-bukkit</artifactId>
    <version>${tubing.version}</version>
    <exclusions>
        <exclusion>
            <groupId>*</groupId>
            <artifactId>*</artifactId>
        </exclusion>
    </exclusions>
</dependency>

plugin setup

Last updated

Was this helpful?