Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions geode-book/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ public_host: localhost
sections:
- repository:
name: geode-docs
directory: docs/guide/115
directory: docs/guide/20
subnav_template: geode-subnav

template_variables:
product_name_long: Apache Geode
product_name: Geode
product_name_lowercase: geode
product_version: '1.15'
product_version_nodot: '115'
product_version_old_minor: '1.14'
product_version_geode: '1.15'
min_java_version: '8'
min_java_update: '121'
product_version: '2.0'
product_version_nodot: '20'
product_version_old_minor: '1.15'
product_version_geode: '2.0'
min_java_version: '17'
min_java_update: '16'
support_url: http://geode.apache.org/community
product_url: http://geode.apache.org/
book_title: Apache Geode Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Build from source or use the TAR distribution to install <%=vars.product_name_lo
1. Set the JAVA\_HOME environment variable.

``` pre
JAVA_HOME=/usr/java/jdk1.<%=vars.min_java_version%>.0_<%=vars.min_java_update%>
JAVA_HOME=/usr/java/jdk-<%=vars.min_java_version%>.0.<%=vars.min_java_update%>
export JAVA_HOME
```

Expand Down Expand Up @@ -54,7 +54,7 @@ Build from source or use the TAR distribution to install <%=vars.product_name_lo
1. Set the JAVA\_HOME environment variable. For example:

``` pre
$ set JAVA_HOME="C:\Program Files\Java\jdk1.<%=vars.min_java_version%>.0_<%=vars.min_java_update%>"
$ set JAVA_HOME="C:\Program Files\Java\jdk-<%=vars.min_java_version%>.0.<%=vars.min_java_update%>"
```

2. Install Gradle, version 2.3 or a more recent version.
Expand Down Expand Up @@ -85,20 +85,20 @@ Build from source or use the TAR distribution to install <%=vars.product_name_lo
2. Expand the .tgz file, where `path_to_product` is an absolute path, and the file name will vary due to the version number:

``` pre
$ tar -zxvf apache-geode-1.1.0.tgz -C path_to_product
$ tar -zxvf apache-geode-2.0.0.tgz -C path_to_product
```

3. Set the JAVA\_HOME environment variable. On Linux/Unix platforms:

``` pre
JAVA_HOME=/usr/java/jdk1.<%=vars.min_java_version%>.0_<%=vars.min_java_update%>
JAVA_HOME=/usr/java/jdk-<%=vars.min_java_version%>.0.<%=vars.min_java_update%>
export JAVA_HOME
```

On Windows platforms:

``` pre
set JAVA_HOME="C:\Program Files\Java\jdk1.<%=vars.min_java_version%>.0_<%=vars.min_java_update%>"
set JAVA_HOME="C:\Program Files\Java\jdk-<%=vars.min_java_version%>.0.<%=vars.min_java_update%>"
```

4. Add the <%=vars.product_name%> scripts to your PATH environment variable. On Linux/Unix platforms:
Expand Down
Loading