This is an automated email from the ASF dual-hosted git repository. chengpan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 1f8e763553 [ZEPPELIN-6303] Align JDK requirement to 11 in build guide 1f8e763553 is described below commit 1f8e7635534967d54903cc342c3aa41bb8833f5b Author: 강현욱 <43662405+hyu...@users.noreply.github.com> AuthorDate: Wed Aug 27 21:48:44 2025 +0900 [ZEPPELIN-6303] Align JDK requirement to 11 in build guide ### What is this PR for? Currently, the `how_to_build.md` documentation specifies that **Java 1.8** is required to build Zeppelin from source. However, the project's root `pom.xml` file defines the `java.version` property as **11**. This discrepancy can confuse new contributors, leading them to set up an incorrect development environment and encounter build failures. https://github.com/apache/zeppelin/blob/f541b461151d06244f36ac65777fd236170ba001/pom.xml#L100 - In `docs/setup/basics/how_to_build.md`: - Change the required JDK version from `1.8` to `11`. - Update the sample installation command from `openjdk-8-jdk` to `openjdk-11-jdk`. ### What type of PR is it? Documentation ### Todos * [x] - Update how_to_build.md docs ### What is the Jira issue? [[ZEPPELIN-6303]](https://issues.apache.org/jira/browse/ZEPPELIN-6303) ### How should this be tested? This is a trivial documentation update, so if the current CI passes, there’s no need for additional unit tests. ### Screenshots (if appropriate) ### Questions: * Does the license files need to update? - No * Is there breaking changes for older versions? - No * Does this needs documentation? - No Closes #5052 from hyunw9/ZEPPELIN-6303. Signed-off-by: Cheng Pan <cheng...@apache.org> --- docs/setup/basics/how_to_build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/setup/basics/how_to_build.md b/docs/setup/basics/how_to_build.md index b842e242a1..acb37388d4 100644 --- a/docs/setup/basics/how_to_build.md +++ b/docs/setup/basics/how_to_build.md @@ -42,7 +42,7 @@ If you want to build from source, you must first install the following dependenc </tr> <tr> <td>OpenJDK or Oracle JDK</td> - <td>1.8 (151+)<br>(set JAVA_HOME)</td> + <td>11<br>(set JAVA_HOME)</td> </tr> </table> @@ -193,7 +193,7 @@ If you don't have requirements prepared, install it. ```bash sudo apt-get update sudo apt-get install git -sudo apt-get install openjdk-8-jdk +sudo apt-get install openjdk-11-jdk sudo apt-get install npm sudo apt-get install libfontconfig sudo apt-get install r-base-dev