Skip to content

Commit a116350

Browse files
committed
update to java 25 in install guide
1 parent c697665 commit a116350

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/guides/install_clojure.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ Alternately, you can use https://github.com/casselc/clj-msi[clj-msi] to install
125125
[[java]]
126126
=== Java
127127

128-
Clojure requires Java. Clojure officially supports Java LTS releases (currently Java 8, 11, 17 and 21), but also tries to ensure interim versions work as well. You can use any Java distribution, whether it’s a commercial release from Oracle or an open source version based on OpenJDK (like Temurin). The Clojure tools require only that the `java` command is on the `PATH` or that the `JAVA_HOME` environment variable is set.
128+
Clojure requires Java. Clojure officially supports Java LTS releases (currently Java 8, 11, 17, 21, and 25), but also tries to ensure interim versions work as well. You can use any Java distribution, whether it’s a commercial release from Oracle or an open source version based on OpenJDK (like Temurin). The Clojure tools require only that the `java` command is on the `PATH` or that the `JAVA_HOME` environment variable is set.
129129

130-
If you don't already have Java installed, we recommend installing Adoptium Temurin 21.
130+
If you don't already have Java installed, we recommend installing Adoptium Temurin 25.
131131

132132
To use the Adoptium Temurin installers:
133133

@@ -137,13 +137,13 @@ To use the Adoptium Temurin installers:
137137

138138
On Mac, you can also install Temurin using brew:
139139

140-
* `brew install --cask temurin@21` - install Temurin 21 (formerly AdoptOpenJDK)
140+
* `brew install --cask temurin@21` - install Temurin 25 (formerly AdoptOpenJDK)
141141

142-
Check your Java version by running `java --version`. If that's not Temurin 21, then you may then need to add `java` to your `PATH`:
142+
Check your Java version by running `java --version`. If that's not Temurin 25, then you may then need to add `java` to your `PATH`:
143143

144144
[source,shell]
145145
----
146-
echo 'export PATH="/Library/Java/JavaVirtualMachines/temurin-21.jdk/Contents/Home/bin:$PATH"' >> ~/.zshrc
146+
echo 'export PATH="/Library/Java/JavaVirtualMachines/temurin-25.jdk/Contents/Home/bin:$PATH"' >> ~/.zshrc
147147
----
148148

149149
== Installing archive or prerelease versions of the CLI

0 commit comments

Comments
 (0)