| commit | 71d204245b0b82abf01f3dc31a7e45b4c1547018 | [log] [tgz] |
|---|---|---|
| author | PoAn Yang <payang@apache.org> | Fri Dec 12 12:07:11 2025 +0800 |
| committer | GitHub <noreply@github.com> | Fri Dec 12 12:07:11 2025 +0800 |
| tree | 5eb0d7933a1920ce030e8026962bc4a3b0cda692 | |
| parent | 01193ad56ff66ba97bb09b9e058b41787b7ee6a6 [diff] |
KAFKA-19897 Document support for testing with java 25 (#748) Updates the Apache Kafka operations guide documentation to include limited support for testing with Java 25 and clarifies the project's best-effort support policy for newer Java versions. Reviewers: Ismael Juma <ismael@juma.me.uk>, Stig Døssing <stigdoessing@gmail.com>, Greg Harris <gharris1727@gmail.com>, Chia-Ping Tsai <chia7712@gmail.com>
The documentation can be hosted on a local webserver via httpd.
You can run it with the following command, note that it requires docker:
./start-preview.sh
Then you can open localhost:8080 on your browser and browse the documentation.
To kill the process, just type ctrl + c.
# change directory into kafka repository cd KAFKA_REPO ./gradlew clean siteDocTar # supposing built with scala 2.13 tar zxvf core/build/distributions/kafka_2.13-$(./gradlew properties | grep version: | awk '{print $NF}' | head -n 1)-site-docs.tgz
# change directory into kafka-site repository cd KAFKA_SITE_REPO # copy the generated documents into dev folder rm -rf dev mkdir dev cp -r KAFKA_REPO/site-docs/* dev # preview it ./start-preview.sh
Then you can open http://localhost:8080/dev/documentation/ on your browser and browse the generated documentation.