mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 10:57:11 +00:00
1.3 KiB
1.3 KiB
Compiling
You can compile FastAsyncWorldEdit as long as you have the Java Development Kit (JDK) for Java 8. Newer versions of the JDK may not compile. You only need one version of the JDK installed.
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
To compile...
On Windows
- Shift + right click the folder with FastAsyncWorldEdit's files and click "Open command prompt".
gradlew build
On Linux, BSD, or Mac OS X
- In your terminal, navigate to the folder with FastAsyncWorldEdit's files (
cd /folder/of/fawe/files
) ./gradlew build
Then you will find...
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.15-#
version.
Other commands
gradlew idea
will generate an IntelliJ IDEA module for each folder.
Possibly broken:
gradlew eclipse
will generate an Eclipse project for each folder.