2022-01-27 20:04:22 +00:00
:toc:
:toclevels: 2
= Compiling
2020-01-29 22:10:00 +00:00
2021-12-20 21:12:04 +00:00
You can compile FastAsyncWorldEdit as long as you have some version of Java greater than or equal to 17 installed. Gradle will download JDK 17 specifically if needed,
2021-01-25 10:14:09 +00:00
but it needs some version of Java to bootstrap from.
2020-01-29 22:10:00 +00:00
2022-01-27 20:04:22 +00:00
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 17.
2021-04-23 12:49:41 +00:00
2022-01-27 20:04:22 +00:00
You can get the JDK 17 link:https://adoptium.net/[here] from Adoptium.
2021-04-23 12:49:41 +00:00
The build process uses Gradle, which you do *not* need to download. FastAsyncWorldEdit is a multi-module project with three active modules:
2020-01-29 22:10:00 +00:00
* `worldedit-core` contains the FastAsyncWorldEdit API
* `worldedit-bukkit` is the Bukkit plugin
2021-04-23 12:49:41 +00:00
* `worldedit-cli` is the command line interface
2020-01-29 22:10:00 +00:00
2022-01-27 20:04:22 +00:00
== To compile...
2020-01-29 22:10:00 +00:00
2022-01-27 20:04:22 +00:00
=== On Windows
2020-01-29 22:10:00 +00:00
2021-05-11 23:21:09 +00:00
1. Shift + right-click the folder with FastAsyncWorldEdit's files and click "Open command prompt".
2021-05-07 21:48:55 +00:00
2. `gradlew clean build`
2020-01-29 22:10:00 +00:00
2022-01-27 20:04:22 +00:00
=== On Linux, BSD, or Mac OS X
2020-01-29 22:10:00 +00:00
1. In your terminal, navigate to the folder with FastAsyncWorldEdit's files (`cd /folder/of/fawe/files`)
2021-05-07 21:48:55 +00:00
2. `./gradlew clean build`
2020-01-29 22:10:00 +00:00
2022-01-27 20:04:22 +00:00
== Then you will find...
2020-01-29 22:10:00 +00:00
You will find:
* The core FastAsyncWorldEdit API in **worldedit-core/build/libs**
2021-04-23 12:49:41 +00:00
* FastAsyncWorldEdit for Bukkit in **worldedit-bukkit/build/libs**
* the CLI version in **worldedit-cli/build/libs**
2020-01-29 22:10:00 +00:00
2021-11-30 20:30:46 +00:00
If you want to use FastAsyncWorldEdit, use the `FastAsyncWorldEdit-<identifier>` version obtained in **worldedit-bukkit/build/libs**.
2021-04-23 12:49:41 +00:00
(The `-#` version includes FastAsyncWorldEdit + necessary libraries.)
2020-01-29 22:10:00 +00:00
2022-01-27 20:04:22 +00:00
== Other commands
2020-01-29 22:10:00 +00:00
2022-01-27 20:04:22 +00:00
* `gradlew idea` will generate an link:https://www.jetbrains.com/idea/[IntelliJ IDEA] module for each folder.
2020-01-29 22:10:00 +00:00
_Possibly broken_:
2022-01-27 20:04:22 +00:00
* `gradlew eclipse` will generate an link:https://www.eclipse.org/downloads/[Eclipse] project for each folder.
2020-01-29 22:10:00 +00:00