Switch to Java 25

Bump the build and tool Java language/runtime versions from 21 to 25 and
retarget the Error Prone default_java_toolchain at remotejdk_25.

No sun.misc.Unsafe workaround is needed: rules_java 9.9.0 (the parent
commit) bundles protobuf 36.0 for JavaBuilder and turbine, which no
longer call the sun.misc.Unsafe memory-access methods that required
--sun-misc-unsafe-memory-access=allow on JDK 24+. The JDK <= 21
-XDaddTypeAnnotationsToSymbol workaround is also dropped, as it was a
no-op on JDK 22+.

Also bump the Eclipse compiler compliance, source and target levels in
.settings/org.eclipse.jdt.core.prefs from 1.8 to 25. That file dated
back to when Gitiles was a Java 8 project and was never updated, so
Eclipse rejected Java 9+ syntax (e.g. the diamond operator on anonymous
classes) in imported sources even though the JRE container is JavaSE-25.

Change-Id: Ic4765288722a9f3b2f4413cc9708d9a024f39c61
4 files changed
tree: 6061b43dcf836603e0bf18e735cb62020bd66208
  1. .settings/
  2. Documentation/
  3. java/
  4. javatests/
  5. lib/
  6. modules/
  7. resources/
  8. tools/
  9. .bazelignore
  10. .bazelrc
  11. .bazelversion
  12. .gitignore
  13. .gitmodules
  14. .mailmap
  15. .zuul.yaml
  16. BUILD
  17. COPYING
  18. external_deps.lock.json
  19. fake_pom_deploy.xml
  20. MODULE.bazel
  21. MODULE.bazel.lock
  22. navbar.md
  23. README.md
  24. version.bzl
README.md

Gitiles - A simple JGit repository browser

Gitiles is a simple repository browser for Git repositories, built on JGit. Its guiding principle is simplicity: it has no formal access controls, no write access, no fancy Javascript, etc.

Gitiles automatically renders *.md Markdown files into HTML for simplified documentation. Refer to the Markdown documentation for details.

Configuration

Gitiles is configurable in a git-style configuration file named gitiles.config. Refer to the configuration documentation for details.

Bugs

Use gerrit's issue tracker to file bugs.

Contributing to Gitiles

Please refer to the Developer Guide.