Skip to main content

Java Version Support

The LimePoint Solifi Consumer requires a specific Java runtime version to operate correctly.

Supported Java Versions

Java VersionSupported
OpenJDK 21
Important

The consumer is only supported with OpenJDK 21. Other Java versions are not officially supported and may cause unexpected behavior.

Verifying Your Java Version

To check your current Java version, run:

java -version

You should see output similar to:

openjdk version "21.0.x" 2024-xx-xx
OpenJDK Runtime Environment (build 21.0.x+xx)
OpenJDK 64-Bit Server VM (build 21.0.x+xx, mixed mode, sharing)

Installing OpenJDK 21

macOS (using Homebrew)

brew install openjdk@21

Ubuntu/Debian

sudo apt update
sudo apt install openjdk-21-jdk

Windows

Download OpenJDK 21 from Adoptium or Oracle.

Using SDKMAN (Cross-platform)

sdk install java 21-open
sdk use java 21-open

Docker Considerations

When deploying the consumer as a Docker container, the LimePoint-provided container image already includes the correct Java version. You don't need to manage Java installation separately.

Next Steps