How to retrieve the JDK versions used across Build plans and Deployment plans

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

To quickly retrieve the JDK versions used in the build plans and deployment plans you can run the below query in your Bamboo database.

Solution

Please run the below query to get all the build plans using JDK.

1 2 3 4 5 6 SELECT b.full_key, r.key_identifier FROM build b JOIN requirement r ON b.requirement_set = r.requirement_set WHERE key_identifier LIKE '%jdk%';

Please run the below query to get all the deployment plans using JDK.

1 2 3 4 5 6 7 8 9 SELECT dp.name AS Deployment_plan_name,        d.name  AS Enviorement_name,        r.key_identifier FROM   deployment_environment d        JOIN requirement r          ON d.requirement_set = r.requirement_set        JOIN deployment_project dp          ON d.package_definition_id = dp.deployment_project_id WHERE  key_identifier LIKE '%jdk%'; 
Updated on April 2, 2025

Still need help?

The Atlassian Community is here for you.