2014-04-06 10:33:05 +08:00
Compiling
=========
2021-01-25 18: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-06 10:33:05 +08:00
2021-04-07 03:58:38 +08: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-03 12: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-06 10:33:05 +08:00
2016-12-03 12:21:03 +08:00
* `worldedit-core` contains the WorldEdit API
2014-11-15 03:27:39 +08:00
* `worldedit-bukkit` is the Bukkit plugin
2016-12-03 12:21:03 +08:00
* `worldedit-sponge` is the Sponge plugin
2014-11-15 03:27:39 +08:00
* `worldedit-forge` is the Forge mod
2020-05-31 12:33:35 +08:00
* `worldedit-fabric` is the Fabric mod
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
## To compile...
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
### On Windows
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
1. Shift + right click the folder with WorldEdit's files and click "Open command prompt".
2019-05-05 09:00:00 +08:00
2. `gradlew build`
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
### On Linux, BSD, or Mac OS X
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
1. In your terminal, navigate to the folder with WorldEdit's files (`cd /folder/of/worldedit/files`)
2019-05-05 09:00:00 +08:00
2. `./gradlew build`
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
## Then you will find...
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
You will find:
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
* The core WorldEdit API in **worldedit-core/build/libs**
* WorldEdit for Bukkit in **worldedit-bukkit/build/libs**
2016-12-03 12:21:03 +08:00
* WorldEdit for Sponge in **worldedit-sponge/build/libs**
2014-11-15 03:27:39 +08:00
* WorldEdit for Forge in **worldedit-forge/build/libs**
2020-05-31 12:33:35 +08:00
* WorldEdit for Fabric in **worldedit-fabric/build/libs**
2014-04-06 10:33:05 +08:00
2016-12-01 20:55:39 +08:00
If you want to use WorldEdit, use the `-dist` version.
2014-04-06 10:33:05 +08:00
2016-12-01 20:55:39 +08:00
(The -dist version includes WorldEdit + necessary libraries.)
2014-04-06 10:33:05 +08:00
2014-11-15 03:27:39 +08:00
## Other commands
2014-04-24 04:37:42 +08:00
2016-12-03 12: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.