-
Notifications
You must be signed in to change notification settings - Fork 71
Developers
pop4959 edited this page Oct 19, 2022
·
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 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.
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>codemc-repo</id>
<url>https://repo.codemc.io/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.griefcraft</groupId>
<artifactId>lwc</artifactId>
<version>2.2.9-dev</version>
<scope>provided</scope>
</dependency>
</dependencies>