2011-01-30 23:10:48 +00:00
|
|
|
WorldEdit
|
|
|
|
=========
|
|
|
|
|
|
|
|
WorldEdit is a voxel and block manipulation library for Minecraft. It is
|
|
|
|
primarily a library but bindings to Bukkit (included) and SPC (external)
|
|
|
|
are available.
|
|
|
|
|
2012-03-06 21:18:08 +00:00
|
|
|
|
2011-01-30 23:10:48 +00:00
|
|
|
Compiling
|
|
|
|
---------
|
|
|
|
|
2011-05-01 18:30:28 +00:00
|
|
|
You need to have Maven installed (http://maven.apache.org). Once installed,
|
|
|
|
simply run:
|
2011-01-30 23:10:48 +00:00
|
|
|
|
2012-01-01 20:57:57 +00:00
|
|
|
mvn clean install
|
2012-03-06 21:18:08 +00:00
|
|
|
|
2011-05-01 18:30:28 +00:00
|
|
|
Maven will automatically download dependencies for you. Note: For that to work,
|
|
|
|
be sure to add Maven to your "PATH".
|
2011-01-30 23:10:48 +00:00
|
|
|
|
2012-03-06 21:18:08 +00:00
|
|
|
|
|
|
|
Compiling branches from pull requests
|
|
|
|
-------------------------------------
|
|
|
|
WARNING: This is not recommended if you dont understand the changes and/or
|
|
|
|
trust the sender of the pull request!
|
|
|
|
|
|
|
|
You need to have Maven and Git installed.
|
|
|
|
|
|
|
|
Run the following commands:
|
|
|
|
|
|
|
|
git clone -b <branch> git://github.com/<author>/worldedit.git <directory>
|
|
|
|
cd <directory>
|
|
|
|
mvn clean package
|
|
|
|
|
|
|
|
The <directory> is just a directory name you can pick at your leisure
|
|
|
|
The other placeholders should be filled in from the pull request's headline:
|
|
|
|
|
|
|
|
<author> wants someone to merge 1 commit into sk89q:master from <author>:<branch>
|
|
|
|
|
|
|
|
|
2011-08-06 21:22:59 +00:00
|
|
|
Issue Tracker
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Please submit bug reports and feature requests here:
|
|
|
|
http://redmine.sk89q.com/projects/worldedit/issues
|
|
|
|
|
2012-03-06 21:18:08 +00:00
|
|
|
|
2011-01-30 23:10:48 +00:00
|
|
|
Contributing
|
|
|
|
------------
|
|
|
|
|
|
|
|
We happily accept contributions. The best way to do this is to fork
|
|
|
|
WorldEdit on GitHub, add your changes, and then submit a pull request. We'll
|
|
|
|
look at it, make comments, and merge it into WorldEdit if everything
|
|
|
|
works out.
|
|
|
|
|
2011-08-06 21:22:59 +00:00
|
|
|
Your submissions have to be licensed under the GNU General Public License v3.
|