Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: In the middle of editing it

...

Setup your environment

  • Install Java  7 Development Kit 7 or 8. Make sure that $JAVA_HOME points to it.
  • Install Maven 3  or or newer. Make sure that mvn is in your PATH$PATH and $M2_HOME points to its installation.
  • Install Protocol Buffers Compiler (protoc) 2.5 Make sure that protoc is in your PATH. Note: You need to install version 2.5. Newer versions won't work.
  • For C# support:
    • Install Visual Studio 2013. Any edition will do, most REEF developers use the free Community Edition.
    • Setup your environment to point to that installation. You can do that by either using the Developer Command Line or following these instructions.

With these requirements met, the instructions below should work regardless of OS choice and command line interpreter. On Windows, you might find this tutorial helpful in setting up PowerShell with Maven, GitHub and Java. You will still have to install the Protocol Buffers Compiler, though.

Cloning the repository

...

Committers

$ git clone https://git-wip-us.apache.org/repos/asf/incubator-reef.git

Users

$ git clone git://git.apache.org/incubator-reef.git

Compiling the code

REEF is built using Maven. Hence, a simple 

...