2014-04-05 19:33:05 -07:00
Compiling
=========
2021-01-25 02:14:09 -08:00
You can compile WorldEdit 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.
2014-04-05 19:33:05 -07:00
2021-04-06 12:58:38 -07: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 8.
2016-12-02 20:21:03 -08:00
The build process uses Gradle, which you do *not* need to download. WorldEdit is a multi-module project with four modules:
2014-04-05 19:33:05 -07:00
2016-12-02 20:21:03 -08:00
* `worldedit-core` contains the WorldEdit API
2014-11-14 11:27:39 -08:00
* `worldedit-bukkit` is the Bukkit plugin
2016-12-02 20:21:03 -08:00
* `worldedit-sponge` is the Sponge plugin
2014-11-14 11:27:39 -08:00
* `worldedit-forge` is the Forge mod
2020-05-30 21:33:35 -07:00
* `worldedit-fabric` is the Fabric mod
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
## To compile...
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
### On Windows
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
1. Shift + right click the folder with WorldEdit's files and click "Open command prompt".
2019-05-04 21:00:00 -04:00
2. `gradlew build`
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
### On Linux, BSD, or Mac OS X
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
1. In your terminal, navigate to the folder with WorldEdit's files (`cd /folder/of/worldedit/files` )
2019-05-04 21:00:00 -04:00
2. `./gradlew build`
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
## Then you will find...
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
You will find:
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
* The core WorldEdit API in **worldedit-core/build/libs**
* WorldEdit for Bukkit in **worldedit-bukkit/build/libs**
2016-12-02 20:21:03 -08:00
* WorldEdit for Sponge in **worldedit-sponge/build/libs**
2014-11-14 11:27:39 -08:00
* WorldEdit for Forge in **worldedit-forge/build/libs**
2020-05-30 21:33:35 -07:00
* WorldEdit for Fabric in **worldedit-fabric/build/libs**
2014-04-05 19:33:05 -07:00
2016-12-01 14:55:39 +02:00
If you want to use WorldEdit, use the `-dist` version.
2014-04-05 19:33:05 -07:00
2016-12-01 14:55:39 +02:00
(The -dist version includes WorldEdit + necessary libraries.)
2014-04-05 19:33:05 -07:00
2014-11-14 11:27:39 -08:00
## Other commands
2014-04-23 13:37:42 -07:00
2016-12-02 20:21:03 -08:00
* `gradlew idea` will generate an [IntelliJ IDEA ](http://www.jetbrains.com/idea/ ) module for each folder.
* `gradlew eclipse` will generate an [Eclipse ](https://www.eclipse.org/downloads/ ) project for each folder.