Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update and specialize build instructions for using the develop branch (not the source release).

...

Within the incubator-geode directory, to build, run the tests, create binary artifacts, and create a distribution:

./gradlew build installDist

To build , create binary artifacts and create a distribution, but not run the tests:

./gradlew build installDist -Dskip.tests=true

The distribution archives built binaries will be located in geode-assembly/build/distributions/. To install from the distribution, extract the archive file and add the bin directory to your path.

The gfsh script will can also be found in geode-assembly/build/install/apache-geode/bin.

Build on Windows

With no There is a gradlew.bat script , Windows developers need to acquire and install Gradle, version 2.3 or a more recent versionin the develop branch of the repository at https://github.com/apache/incubator-geode, so it can be used to build from source.

Within the incubator-geode folder, to build, run the tests, create binary artifacts, and create a distribution:

gradle gradlew.bat build installDist

To build , create binary artifacts and create a distribution, but not run the tests:

gradle build installDist -Dskip.tests=true

The distribution archives built binaries will be located in geode-assembly\build\distributions\. To install from the distribution, extract the archive file and add the bin directory to your path.

The gfsh.bat script will can also be found in geode-assembly\build\install\apache-geode\bin.

...