Skip to content
Korvic edited this page Jul 30, 2020 · 4 revisions

The information on this page is intended for plugin developers. In other words, if you're a server owner, you might not find this very interesting.

Contributing

Contributing to LWCX is encouraged, and very easy. Fork the repository, and build using Maven. Simply make a pull request explaining your changes, and how they are a beneficial addition to the plugin. Travis will automatically build all pull requests to ensure that they build on OpenJDK 8.

Using LWC as a dependency

If you are using Maven, you can add the following to your pom.xml file. If using Gradle, adjust this for use in your build.gradle file.

    <repositories>
        <repository>
            <id>ender-zone-repo</id>
            <url>https://ci.ender.zone/plugin/repository/everything/</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>com.griefcraft.lwc</groupId>
            <artifactId>LWCX</artifactId>
            <version>2.2.6</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
Clone this wiki locally