You can compile FastAsyncWorldEdit as long as you have some version of Java greater than or equal to 21 installed. Gradle will download JDK 21 specifically if needed, but it needs some version of Java to bootstrap from.
Note that if you have JRE 8 installed, Gradle will currently attempt to use that to compile, which will not work. It is easiest to uninstall JRE 8 and replace it with JDK 21.
You can get the JDK 21 here from Adoptium.
The build process uses Gradle, which you do not need to download. FastAsyncWorldEdit is a multi-module project with three active modules:
-
worldedit-core
contains the FastAsyncWorldEdit API -
worldedit-bukkit
is the Bukkit plugin -
worldedit-cli
is the command line interface
You will find:
-
The core FastAsyncWorldEdit API in worldedit-core/build/libs
-
FastAsyncWorldEdit for Bukkit in worldedit-bukkit/build/libs
-
the CLI version in worldedit-cli/build/libs
If you want to use FastAsyncWorldEdit, use the FastAsyncWorldEdit-<identifier>
version obtained in worldedit-bukkit/build/libs.
(The -#
version includes FastAsyncWorldEdit + necessary libraries.)
-
gradlew idea
will generate an IntelliJ IDEA module for each folder.
Possibly broken:
* gradlew eclipse
will generate an Eclipse project for each folder.