Plex-FAWE/COMPILING.md

51 lines
1.8 KiB
Markdown
Raw Normal View History

Compiling
=========
2016-12-03 04:21:03 +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 the JDK installed.
2016-12-03 04:21:03 +00:00
The build process uses Gradle, which you do *not* need to download. WorldEdit is a multi-module project with four modules:
2016-12-03 04:21:03 +00:00
* `worldedit-core` contains the WorldEdit API
* `worldedit-bukkit` is the Bukkit plugin
2016-12-03 04:21:03 +00:00
* `worldedit-sponge` is the Sponge plugin
* `worldedit-forge` is the Forge mod
## To compile...
### On Windows
1. Shift + right click the folder with WorldEdit's files and click "Open command prompt".
2. `gradlew clean setupDecompWorkspace`
3. `gradlew build`
### On Linux, BSD, or Mac OS X
1. In your terminal, navigate to the folder with WorldEdit's files (`cd /folder/of/worldedit/files`)
2015-09-16 01:10:22 +00:00
2. `./gradlew clean setupDecompWorkspace`
3. `./gradlew build`
## Then you will find...
You will find:
* The core WorldEdit API in **worldedit-core/build/libs**
* WorldEdit for Bukkit in **worldedit-bukkit/build/libs**
2016-12-03 04:21:03 +00:00
* WorldEdit for Sponge in **worldedit-sponge/build/libs**
* WorldEdit for Forge in **worldedit-forge/build/libs**
2016-12-01 12:55:39 +00:00
If you want to use WorldEdit, use the `-dist` version.
2016-12-01 12:55:39 +00:00
(The -dist version includes WorldEdit + necessary libraries.)
2016-12-03 04:21:03 +00:00
### Note regarding `setupDecompWorkspace`
`setupDecompWorkspace` requires more memory than is usually given to Gradle by default.
If it fails, you should put `org.gradle.jvmargs=-Xmx3G` in `gradle.properties`.
Please don't commit this change!
## Other commands
2014-04-23 20:37:42 +00:00
2016-12-03 04:21:03 +00: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.
2015-09-16 01:10:22 +00:00
* Use `setupCIWorkspace` instead of `setupDecompWorkspace` if you are doing this on a CI server.