About Identity Broker
Console View

Displays version and build information.
System Info
- Version — the product version.
- Build Date — when this artifact was built.
- JVM Version — Java runtime version.
- OS — server operating system.
- Secret Manager, Issuer, and the OIDC/SAML/SCIM endpoint URLs.
This information is useful when reporting bugs.
How the version is populated
You don't set the version by hand. It's generated at build time and flows through one path, so the console always matches the deployed artifact:
- Build —
springBoot { buildInfo() }writesMETA-INF/build-info.properties(version + build timestamp) into the WAR. The version comes from the Gradleproject.version. - Serve — Spring Boot exposes it as a
BuildPropertiesbean;GET /admin/system/api/inforeturnsproductVersion+buildTime(falling back to theapp.versionproperty when build-info isn't present, e.g. a plainbootRun). - Show — the About page and the sidebar version card both read that endpoint — no hard-coded version anywhere in the UI.
To bump the version: set the release tag as the project version (the release process does this). Everything downstream updates automatically.