2014-04-06 02:33:05 +00:00
Compiling
=========
2014-11-14 19:27:39 +00:00
You can compile WorldEdit as long as you have the [Java Development Kit (JDK) ](http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html ) for Java 7 or newer. You only need one version of JDK installed.
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
The build process uses Gradle, which you do *not* need to download. WorldEdit is a multi-module project with three modules:
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
* `worldedit-core` contains WorldEdit
* `worldedit-bukkit` is the Bukkit plugin
* `worldedit-forge` is the Forge mod
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
## To compile...
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
### On Windows
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
1. Shift + right click the folder with WorldEdit's files and click "Open command prompt".
2. `gradlew clean setupDecompWorkspace`
3. `gradlew build`
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
### On Linux, BSD, or Mac OS X
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
1. In your terminal, navigate to the folder with WorldEdit's files (`cd /folder/of/worldedit/files`)
2. `./gradlew clean setupDevWorkspace`
3. `./gradlew build`
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
## Then you will find...
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
You will find:
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
* The core WorldEdit API in **worldedit-core/build/libs**
* WorldEdit for Bukkit in **worldedit-bukkit/build/libs**
* WorldEdit for Forge in **worldedit-forge/build/libs**
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
If you want to use WorldEdit, use the `-shadow` version.
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
(The -shadow version includes WorldEdit + necessary libraries.)
2014-04-06 02:33:05 +00:00
2014-11-14 19:27:39 +00:00
## Other commands
2014-04-23 20:37:42 +00:00
2014-11-14 19:27:39 +00:00
* `gradlew idea` will generate an [IntelliJ IDEA ](http://www.jetbrains.com/idea/ ) module for the Forge module.
* `gradlew eclipse` will generate an [Eclipse ](https://www.eclipse.org/downloads/ ) project for the Forge version.
* Use `setupCIWorkspace` instead of `setupDevWorkspace` if you are doing this on a CI server.