You can compile FastAsyncWorldEdit as long as you have some version of Java greater than or equal to 8 installed. Gradle will download JDK 8 specifically if needed, but it needs some version of Java to bootstrap from.
The build process uses Gradle, which you do not need to download. FastAsyncWorldEdit is a multi-module project with two active modules:
worldedit-core
contains the FastAsyncWorldEdit APIworldedit-bukkit
is the Bukkit plugin
- Shift + right click the folder with FastAsyncWorldEdit's files and click "Open command prompt".
gradlew build
- In your terminal, navigate to the folder with FastAsyncWorldEdit's files (
cd /folder/of/fawe/files
) ./gradlew build
You will find:
- The core FastAsyncWorldEdit API in worldedit-core/build/libs
- FastAsyncWorldEdit for Bukkit in worldedit-bukkit/build/libs*
If you want to use FastAsyncWorldEdit, use the FastAsyncWorldEdit-1.16-#
version.
gradlew idea
will generate an IntelliJ IDEA module for each folder.
Possibly broken:
gradlew eclipse
will generate an Eclipse project for each folder.